diff options
| author | Frederick Muriuki Muriithi | 2026-08-28 14:14:36 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-08-28 14:14:36 -0500 |
| commit | d9b8803bd808a338a72b03aa55932c8d589892d8 (patch) | |
| tree | 453da3cba282ebb739e07143e900e39898289cee /gn_auth/auth/authorisation | |
| parent | cdf3daefaa6b7870b2f36da440c59c327ea1d62f (diff) | |
| download | gn-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.py | 3 |
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") |
