Skip to content

Commit

Permalink
adjust rest schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mam10eks committed Dec 10, 2024
1 parent 1955a99 commit 43db15c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/src/tira_app/endpoints/v1/_tirex.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def run_by_uuid(request: Request, run_uuid: str) -> Response:


endpoints = [
path("tirex/<str:dataset_id>/topics/", topics),
path("tirex/<str:dataset_id>/topic/<str:qid>", topic),
path("tirex/runs/<str:run_uuid>", run_by_uuid),
path("<str:dataset_id>/topics", topics),
path("<str:dataset_id>/topic/<str:qid>", topic),
path("runs/<str:run_uuid>", run_by_uuid),
]

0 comments on commit 43db15c

Please sign in to comment.