- Notifications
You must be signed in to change notification settings - Fork926
feat: app sharing (now open source!)#4378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
6b68642
1ca5c46
67a7057
d7403ec
2a5bcc8
a2eacaa
e4f6fd6
40300a7
89a75d0
4f6aac8
9f45850
cedc57d
f8268e7
aae96de
8df6bed
077cb62
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-- Drop column sharing_level from workspace_apps | ||
ALTER TABLE workspace_apps DROP COLUMN sharing_level; | ||
-- Drop type app_sharing_level | ||
DROP TYPE app_sharing_level; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
-- Add enum app_sharing_level | ||
CREATE TYPE app_sharing_level AS ENUM ( | ||
-- only the workspace owner can access the app | ||
'owner', | ||
-- any authenticated user on the site can access the app | ||
'authenticated', | ||
-- any user can access the app even if they are not authenticated | ||
'public' | ||
); | ||
-- Add sharing_level column to workspace_apps table | ||
ALTER TABLE workspace_apps ADD COLUMN sharing_level app_sharing_level NOT NULL DEFAULT 'owner'::app_sharing_level; |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.