We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36be97 commit 8b82fabCopy full SHA for 8b82fab
common/organisations/permissions.py
@@ -0,0 +1,10 @@
1
+CREATE_PROJECT = "CREATE_PROJECT"
2
+MANAGE_USER_GROUPS = "MANAGE_USER_GROUPS"
3
+
4
+ORGANISATION_PERMISSIONS = (
5
+ (CREATE_PROJECT, "Allows the user to create projects in this organisation."),
6
+ (
7
+ MANAGE_USER_GROUPS,
8
+ "Allows the user to manage the groups in the organisation and their members.",
9
+ ),
10
+)
0 commit comments