diff options
author | Frederick Muriuki Muriithi | 2023-01-04 11:20:30 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-01-04 11:20:30 +0300 |
commit | 3752c663fa9ded1801680aa2342947b7676d8ce9 (patch) | |
tree | 6e221e5b003a634e585833cfe19a8d73aee1f36c /gn3/auth/blueprint.py | |
parent | 7ea2f83c505c792a36d17cc0fc13301a885fb732 (diff) | |
download | genenetwork3-3752c663fa9ded1801680aa2342947b7676d8ce9.tar.gz |
auth: Add `/register-user` endpoint
* gn3/app.py: register top-level error handlers. reorganise oauth2 blueprint.
* gn3/auth/__init__.py: reorganise oaut2 blueprint.
* gn3/auth/authentication/oauth2/views.py: reorganise oauth2 blueprint.
* gn3/auth/authorisation/exceptions.py -> gn3/auth/authorisation/errors.py
* gn3/auth/authorisation/groups.py: rename file/module
* gn3/auth/authorisation/resources.py: rename file/module
* gn3/auth/authorisation/views.py: Add `/register-user` endpoint
* gn3/auth/blueprint.py: reorganise oauth2 blueprint.
* gn3/errors.py: register top-level error handlers.
Diffstat (limited to 'gn3/auth/blueprint.py')
-rw-r--r-- | gn3/auth/blueprint.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gn3/auth/blueprint.py b/gn3/auth/blueprint.py new file mode 100644 index 0000000..39a031b --- /dev/null +++ b/gn3/auth/blueprint.py @@ -0,0 +1,4 @@ +"""Setup blueprint for the auth system""" +from flask import Blueprint + +oauth2 = Blueprint("oauth2", __name__) |