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/authentication | |
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/authentication')
-rw-r--r-- | gn3/auth/authentication/oauth2/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/auth/authentication/oauth2/views.py b/gn3/auth/authentication/oauth2/views.py index 58fa6d4..3af83e2 100644 --- a/gn3/auth/authentication/oauth2/views.py +++ b/gn3/auth/authentication/oauth2/views.py @@ -1,12 +1,12 @@ """Endpoints for the oauth2 server""" import uuid -from flask import Blueprint, current_app as app +from flask import current_app as app +from gn3.auth.blueprint import oauth2 from .endpoints.revocation import RevocationEndpoint from .endpoints.introspection import IntrospectionEndpoint -oauth2 = Blueprint("oauth2", __name__) @oauth2.route("/register-client", methods=["GET", "POST"]) def register_client(): |