From 6c76667857d5bbc8db962a551cece3f068074055 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 3 Feb 2023 15:23:38 +0300 Subject: auth: commit missing module. --- gn3/auth/views.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 gn3/auth/views.py diff --git a/gn3/auth/views.py b/gn3/auth/views.py new file mode 100644 index 0000000..1d78fd6 --- /dev/null +++ b/gn3/auth/views.py @@ -0,0 +1,17 @@ +"""The Auth(oris|entic)ation routes/views""" +from flask import Blueprint + +from .authentication.oauth2.views import auth + +from .authorisation.users.views import users +from .authorisation.roles.views import roles +from .authorisation.groups.views import groups +from .authorisation.resources.views import resources + +oauth2 = Blueprint("oauth2", __name__) + +oauth2.register_blueprint(auth, url_prefix="/") +oauth2.register_blueprint(users, url_prefix="/user") +oauth2.register_blueprint(roles, url_prefix="/role") +oauth2.register_blueprint(groups, url_prefix="/group") +oauth2.register_blueprint(resources, url_prefix="/resource") -- cgit v1.2.3