about summary refs log tree commit diff
path: root/gn_auth/auth/authorisation
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-08-28 14:14:36 -0500
committerFrederick Muriuki Muriithi2026-08-28 14:14:36 -0500
commitd9b8803bd808a338a72b03aa55932c8d589892d8 (patch)
tree453da3cba282ebb739e07143e900e39898289cee /gn_auth/auth/authorisation
parentcdf3daefaa6b7870b2f36da440c59c327ea1d62f (diff)
downloadgn-auth-d9b8803bd808a338a72b03aa55932c8d589892d8.tar.gz
Add package for administrative endpoints.
Diffstat (limited to 'gn_auth/auth/authorisation')
-rw-r--r--gn_auth/auth/authorisation/resources/views.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gn_auth/auth/authorisation/resources/views.py b/gn_auth/auth/authorisation/resources/views.py
index 76cf416..fc9d90e 100644
--- a/gn_auth/auth/authorisation/resources/views.py
+++ b/gn_auth/auth/authorisation/resources/views.py
@@ -62,12 +62,15 @@ from .models import (
     get_resource_id, delete_resource as _delete_resource,
     edit_resource as _edit_resource)
 
+from .system.views import system
+
 logger = logging.getLogger(__name__)
 
 resources = Blueprint("resources", __name__)
 resources.register_blueprint(popbp, url_prefix="/")
 resources.register_blueprint(genobp, url_prefix="/")
 resources.register_blueprint(phenobp, url_prefix="/")
+resources.register_blueprint(system, url_prefix="/system")
 
 @resources.route("/categories", methods=["GET"])
 @require_oauth("profile group resource")