docs: org router tag metadata

Issue: #13
This commit is contained in:
Chris Milne 2026-05-28 16:46:44 +01:00
parent d3bdfe8469
commit 6a90e03d40
2 changed files with 5 additions and 1 deletions

View file

@ -36,6 +36,10 @@ tags_metadata = [
"name": "Service",
"description": "Services related operations, includes registering services and reissuing API keys",
},
{
"name": "Organisation",
"description": "Organisation related operations, includes getting lists of users etc associated with orgs",
},
]

View file

@ -43,7 +43,7 @@ from src.organisation.schemas import OrgPostOrgRequest, OrgPatchQuestionnaireReq
router = APIRouter(
prefix="/org",
tags=["org"],
tags=["Organisation"],
)