about summary refs log tree commit diff
path: root/gn_auth
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth')
-rw-r--r--gn_auth/auth/views.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/gn_auth/auth/views.py b/gn_auth/auth/views.py
index cee92e7..383dc9f 100644
--- a/gn_auth/auth/views.py
+++ b/gn_auth/auth/views.py
@@ -14,10 +14,6 @@ from .authorisation.resources.groups.views import groups
 from .system.views import systembp
 
 
-# T0DO: Remove this once consumers are changed
-from .authorisation.resources.system.views import system
-
-
 oauth2 = Blueprint("oauth2", __name__)
 
 oauth2.register_blueprint(auth, url_prefix="/")
@@ -29,8 +25,3 @@ oauth2.register_blueprint(groups, url_prefix="/group")
 oauth2.register_blueprint(resources, url_prefix="/resource")
 oauth2.register_blueprint(privileges, url_prefix="/privileges")
 oauth2.register_blueprint(systembp, url_prefix="/system")
-
-
-
-# T0DO: Remove this once consumers are changed
-oauth2.register_blueprint(system, url_prefix="/system")