fix: missing http verb

This commit is contained in:
Derrick Hammer 2024-01-17 16:59:53 -05:00
parent 72c3167e5f
commit b3e1840fac
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ func getRoutes(h *s5.HttpHandler, portal interfaces.Portal) map[string]jape.Hand
"DELETE /s5/delete/:cid": s5.AuthMiddleware(h.AccountPinDelete, portal),
// Debug API
"/s5/debug/download_urls/:cid": s5.AuthMiddleware(h.DebugDownloadUrls, portal),
"GET /s5/debug/download_urls/:cid": s5.AuthMiddleware(h.DebugDownloadUrls, portal),
//Registry API
"GET /s5/registry": s5.AuthMiddleware(h.RegistryQuery, portal),