about summary refs log tree commit diff
path: root/gn3/auth/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/auth/views.py')
-rw-r--r--gn3/auth/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gn3/auth/views.py b/gn3/auth/views.py
index 1d78fd6..4e01cc9 100644
--- a/gn3/auth/views.py
+++ b/gn3/auth/views.py
@@ -3,6 +3,7 @@ from flask import Blueprint
 
 from .authentication.oauth2.views import auth
 
+from .authorisation.data.views import data
 from .authorisation.users.views import users
 from .authorisation.roles.views import roles
 from .authorisation.groups.views import groups
@@ -11,6 +12,7 @@ from .authorisation.resources.views import resources
 oauth2 = Blueprint("oauth2", __name__)
 
 oauth2.register_blueprint(auth, url_prefix="/")
+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")