about summary refs log tree commit diff
path: root/gn3/auth/views.py
diff options
context:
space:
mode:
authorJohn Nduli2024-10-18 15:06:34 +0300
committerFrederick Muriuki Muriithi2024-10-18 09:07:16 -0500
commit1aeb61f50567e2400c3cc1a18eeef1e59bdc68ac (patch)
tree7a4624659f735980345cf10aae101f9e6ec94deb /gn3/auth/views.py
parent0820295202c2fe747c05b93ce0f1c5a604442f69 (diff)
downloadgenenetwork3-1aeb61f50567e2400c3cc1a18eeef1e59bdc68ac.tar.gz
refactor: remove unused gn3.auth modules
Diffstat (limited to 'gn3/auth/views.py')
-rw-r--r--gn3/auth/views.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/gn3/auth/views.py b/gn3/auth/views.py
deleted file mode 100644
index da64049..0000000
--- a/gn3/auth/views.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""The Auth(oris|entic)ation routes/views"""
-from flask import Blueprint
-
-from .authorisation.data.views import data
-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(data, url_prefix="/data")
-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")