mucha: add DownloadState

This commit is contained in:
2023-07-12 00:41:53 -04:00
parent 09c4f8cda4
commit 85b73e634d
2 changed files with 75 additions and 13 deletions

View File

@ -113,6 +113,13 @@ class HttpDispatcher(resource.Resource):
action="handle_updatecheck",
conditions=dict(method=["POST"]),
)
self.map_post.connect(
"mucha_dlstate",
"/mucha/downloadstate.do",
controller="mucha",
action="handle_dlstate",
conditions=dict(method=["POST"]),
)
self.map_get.connect(
"title_get",