feat: rich parameters: introduce display_name (#6919)

* model

* DB

* fix: DisplayName

* proto

* Proto

* Update go dep

* fixme

* fix format

* config

* fmt

* fix

* Fix

* fix

* chore(UI): redirecting from workspace page if 404 (#6880)

* model

* CLI: Display parameter

* fix

* update dep

* fix

* fix

* fix

* UI changes

* fmt

---------

Co-authored-by: Kira Pilot <kira@coder.com>
This commit is contained in:
Marcin Tojek
2023-04-03 14:37:47 +02:00
committed by GitHub
parent d9d44c1188
commit 633dfbdb2e
25 changed files with 370 additions and 297 deletions

View File

@ -0,0 +1 @@
ALTER TABLE template_version_parameters DROP COLUMN display_name;

View File

@ -0,0 +1,4 @@
ALTER TABLE template_version_parameters ADD COLUMN display_name text NOT NULL DEFAULT '';
COMMENT ON COLUMN template_version_parameters.display_name
IS 'Display name of the rich parameter';