WIP: Webservice Endpoints #2

Draft
tux wants to merge 4 commits from ws_endpoints into master
Showing only changes of commit 95961d4b7b - Show all commits

2
app.py
View file

@ -103,6 +103,8 @@ def make_app(_auth_provider=None, gitmgr=None):
(version_path + r"/health", HealthHandler,
{"sources": [lambda: {"git-head": gitmgr.head_sha}] if gitmgr else None}),
(version_path + r"/oas3", Oas3Handler),
(version_path + r"/entities", AllEntitiesHandler, {"auth_provider": _auth_provider}),
(version_path + r"/entity/{.*}", SingleEntityHandler, {"auth_provider": _auth_provider}),
])