diff options
Diffstat (limited to 'thallium-backend/src/dto/users.py')
| -rw-r--r-- | thallium-backend/src/dto/users.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/thallium-backend/src/dto/users.py b/thallium-backend/src/dto/users.py index 0d1cdac..35eadec 100644 --- a/thallium-backend/src/dto/users.py +++ b/thallium-backend/src/dto/users.py @@ -12,6 +12,7 @@ class UserPermission(IntFlag): REVOKE_VOUCHERS = 2**1 VIEW_PRODUCTS = 2**2 MANAGE_USERS = 2**3 + UPDATE_TEMPLATES = 2**4 class User(BaseModel): |