diff options
author | 2018-05-14 20:42:41 +0100 | |
---|---|---|
committer | 2018-05-14 20:42:41 +0100 | |
commit | b7fe5de12be5c9f02adeedba45befee751ea68be (patch) | |
tree | 740be4b7dff4a8e70616e1663375ef1940604d53 /pysite/constants.py | |
parent | Switch from using abort to using werkzeug exception (diff) |
Migration runner and migrations (#69)
* Migration runner and migrations
* Remove demo wiki data
* [Staff] Table management pages
* Fix weird travis build omission
* Address review and comments by @Volcyy
* [Tables] Fix pagination
* Move table definitions to new file with nameduple
* Linting
* Address lemon's review comments
* Address @Volcyy's review
* Address lemon's review
* Update search placeholder
* Search by key now available
Diffstat (limited to 'pysite/constants.py')
-rw-r--r-- | pysite/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pysite/constants.py b/pysite/constants.py index 49882030..cb8dad62 100644 --- a/pysite/constants.py +++ b/pysite/constants.py @@ -28,6 +28,7 @@ HELPER_ROLE = "267630620367257601" CONTRIB_ROLE = "295488872404484098" ALL_STAFF_ROLES = (OWNER_ROLE, ADMIN_ROLE, MODERATOR_ROLE, DEVOPS_ROLE) +TABLE_MANAGER_ROLES = (OWNER_ROLE, ADMIN_ROLE, DEVOPS_ROLE) EDITOR_ROLES = ALL_STAFF_ROLES + (HELPER_ROLE, CONTRIB_ROLE) SERVER_ID = 267624335836053506 |