mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: add hidden enterprise cmd command to list roles (#13303)
* feat: add hidden enterprise cmd command to list roles This includes custom roles, and has a json ouput option for more granular permissions
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
ALTER TABLE custom_roles
|
||||
-- This column is nullable, meaning no organization scope
|
||||
DROP COLUMN organization_id;
|
@ -0,0 +1,5 @@
|
||||
ALTER TABLE custom_roles
|
||||
-- This column is nullable, meaning no organization scope
|
||||
ADD COLUMN organization_id uuid;
|
||||
|
||||
COMMENT ON COLUMN custom_roles.organization_id IS 'Roles can optionally be scoped to an organization'
|
Reference in New Issue
Block a user