aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/oauth2
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-06-17 13:56:29 -0500
committerFrederick Muriuki Muriithi2024-06-17 13:56:29 -0500
commitea4696e1c476a0d706d6b31372281feedd9bc376 (patch)
treef3907086e839969b83c7b8851569fe5009c2aef3 /gn2/wqflask/oauth2
parentb6a2d32b12525afba6928a57a25924d795754204 (diff)
downloadgenenetwork2-ea4696e1c476a0d706d6b31372281feedd9bc376.tar.gz
Delete request to obsoleted endpoint.
Diffstat (limited to 'gn2/wqflask/oauth2')
-rw-r--r--gn2/wqflask/oauth2/ui.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/gn2/wqflask/oauth2/ui.py b/gn2/wqflask/oauth2/ui.py
index cf2e9af7..e31d87d9 100644
--- a/gn2/wqflask/oauth2/ui.py
+++ b/gn2/wqflask/oauth2/ui.py
@@ -7,12 +7,7 @@ from .request_utils import process_error
def render_ui(templatepath: str, **kwargs):
"""Handle repetitive UI rendering stuff."""
- roles = kwargs.get("roles", tuple()) # Get roles if already provided
- if user_logged_in() and not bool(roles): # If not, try fetching them
- roles_results = oauth2_get("auth/system/roles").either(
- lambda err: {"roles_error": process_error(err)},
- lambda roles: {"roles": roles})
- kwargs = {**kwargs, **roles_results}
+ roles = kwargs.get("roles", tuple()) # Get roles
user_privileges = tuple(
privilege["privilege_id"] for role in roles
for privilege in role["privileges"])