diff options
author | Frederick Muriuki Muriithi | 2023-01-31 04:47:46 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-01-31 05:01:42 +0300 |
commit | 83a8bf8e45951b771b476d2200ed1b69e4904975 (patch) | |
tree | ba34ec0bd1ea006c302807762f37604d1c154cba /gn3/auth/authorisation/roles.py | |
parent | 94b1f5b04bcee2ded0d0cbf11df4101bb86d6ce8 (diff) | |
download | genenetwork3-83a8bf8e45951b771b476d2200ed1b69e4904975.tar.gz |
auth: Remove the @authenticated_p decorator
The @authenticated_p decorator (and function), is an artifact of the original
development ideas and should be removed from use.
Diffstat (limited to 'gn3/auth/authorisation/roles.py')
-rw-r--r-- | gn3/auth/authorisation/roles.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gn3/auth/authorisation/roles.py b/gn3/auth/authorisation/roles.py index f3b2f90..e9f3fb0 100644 --- a/gn3/auth/authorisation/roles.py +++ b/gn3/auth/authorisation/roles.py @@ -9,7 +9,6 @@ from pymonad.either import Left, Right, Either from gn3.auth import db from gn3.auth.dictify import dictify from gn3.auth.authentication.users import User -from gn3.auth.authentication.checks import authenticated_p from .checks import authorised_p from .privileges import Privilege @@ -28,7 +27,6 @@ class Role(NamedTuple): "privileges": tuple(dictify(priv) for priv in self.privileges) } -@authenticated_p @authorised_p(("group:role:create-role",), error_message="Could not create role") def create_role( cursor: db.DbCursor, role_name: str, |