diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-30 20:36:49 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-30 20:36:49 +0200 |
commit | e8cf20110599c16df4f8a33ee36c3fe282cefa3a (patch) | |
tree | 8d0ca9e022e80c74dcaf4f656e56f01a20d12ec9 /client/models.py | |
parent | block debug actions and confirm for approve doc (diff) | |
download | scout-subs-e8cf20110599c16df4f8a33ee36c3fe282cefa3a.tar.gz scout-subs-e8cf20110599c16df4f8a33ee36c3fe282cefa3a.zip |
perm staff for non primary group
Diffstat (limited to 'client/models.py')
-rw-r--r-- | client/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/models.py b/client/models.py index 7c47cee..5d59e3e 100644 --- a/client/models.py +++ b/client/models.py @@ -75,7 +75,8 @@ class Document(models.Model): class Meta: permissions = [ - ("approved", "The user is approved") + ("approved", "The user is approved"), + ("staff", "The user is staff of the non primary group") ] |