diff options
author | Frederick Muriuki Muriithi | 2023-05-29 11:21:48 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-05-29 11:21:48 +0300 |
commit | 25c6da03e1639895f0051e8be6502762beefde0b (patch) | |
tree | 3355d9538c550753b6b5f45f37446c0f1e584011 /gn3/errors.py | |
parent | a448329fac4ca3c3c42dd180e3bc823024bbd25c (diff) | |
download | genenetwork3-25c6da03e1639895f0051e8be6502762beefde0b.tar.gz |
Enable Administrator login on GN3
* gn3/auth/authentication/oauth2/views.py: Remove endpoint
* gn3/auth/authorisation/users/admin/__init__.py: New admin module
* gn3/auth/authorisation/users/admin/ui.py: New admin module
* gn3/auth/authorisation/users/admin/views.py: New admin module
* gn3/auth/views.py: Use new admin module
* gn3/errors.py: Fix linting errors
* gn3/templates/login.html: New html template
* main.py: Fix linting errors
Diffstat (limited to 'gn3/errors.py')
-rw-r--r-- | gn3/errors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn3/errors.py b/gn3/errors.py index 7ae07f4..606b3d3 100644 --- a/gn3/errors.py +++ b/gn3/errors.py @@ -13,6 +13,7 @@ def handle_authorisation_error(exc: AuthorisationError): }), exc.error_code def handle_oauth2_errors(exc: OAuth2Error): + """Handle OAuth2Error if not handled anywhere else.""" current_app.logger.error(exc) return jsonify({ "error": exc.error, |