From d9b8803bd808a338a72b03aa55932c8d589892d8 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 28 Aug 2026 14:14:36 -0500 Subject: Add package for administrative endpoints. --- gn_auth/auth/authorisation/resources/views.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gn_auth/auth/authorisation') 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") -- cgit 1.4.1