aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/__init__.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-09-26 03:14:39 +0300
committerFrederick Muriuki Muriithi2023-09-26 03:44:34 +0300
commitac11c943c50633ed39f31688e78f9bcb933f78a7 (patch)
tree546d9ed13aff7e1df38110bb9c606d820b353684 /gn_auth/__init__.py
parentd453f607ffa5d3a7c6dde31e16b0f4cbb7cbb069 (diff)
downloadgn-auth-ac11c943c50633ed39f31688e78f9bcb933f78a7.tar.gz
Handle AuthorisationError at the top-level
Add an error handler to gracefully handle the custom AuthorisationError at the application's top-level to avoid having to manually handle it everywhere that the error (and its sub-classes) might be raised.
Diffstat (limited to 'gn_auth/__init__.py')
-rw-r--r--gn_auth/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gn_auth/__init__.py b/gn_auth/__init__.py
index 446ba19..6df1bc7 100644
--- a/gn_auth/__init__.py
+++ b/gn_auth/__init__.py
@@ -12,6 +12,7 @@ from gn_auth.auth.views import oauth2
from gn_auth.auth.authentication.oauth2.server import setup_oauth2_server
from . import settings
+from .errors import register_error_handlers
class ConfigurationError(Exception):
"""Raised in case of a configuration error."""
@@ -74,4 +75,6 @@ def create_app(config: Optional[dict] = None) -> Flask:
app.register_blueprint(misc, url_prefix="/")
app.register_blueprint(oauth2, url_prefix="/auth")
+ register_error_handlers(app)
+
return app