aboutsummaryrefslogtreecommitdiff
path: root/gn3/auth/authentication/checks.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-01-31 04:47:46 +0300
committerFrederick Muriuki Muriithi2023-01-31 05:01:42 +0300
commit83a8bf8e45951b771b476d2200ed1b69e4904975 (patch)
treeba34ec0bd1ea006c302807762f37604d1c154cba /gn3/auth/authentication/checks.py
parent94b1f5b04bcee2ded0d0cbf11df4101bb86d6ce8 (diff)
downloadgenenetwork3-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/authentication/checks.py')
-rw-r--r--gn3/auth/authentication/checks.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/gn3/auth/authentication/checks.py b/gn3/auth/authentication/checks.py
deleted file mode 100644
index 63b0752..0000000
--- a/gn3/auth/authentication/checks.py
+++ /dev/null
@@ -1,14 +0,0 @@
-"""Functions to check for user authentication."""
-
-from flask import g
-
-from .exceptions import AuthenticationError
-
-def authenticated_p(func):
- """Decorator for functions requiring authentication."""
- def __authenticated__(*args, **kwargs):
- user = g.user if hasattr(g, "user") else False
- if user:
- return func(*args, **kwargs)
- raise AuthenticationError("You need to be authenticated")
- return __authenticated__