1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-26 07:13:41 +01:00

Revert "feat!: removes custom content help support"

This reverts commit 904b2a4f89.
This commit is contained in:
Amir Raminfar
2023-12-27 20:41:58 -08:00
parent 904b2a4f89
commit 6a4c384eb6
8 changed files with 138 additions and 0 deletions

View File

@@ -112,6 +112,7 @@ func createRouter(h *handler) *chi.Mux {
r.Get("/api/releases", h.releases)
r.Get("/api/profile/avatar", h.avatar)
r.Patch("/api/profile", h.updateProfile)
r.Get("/api/content/{id}", h.staticContent)
r.Get("/logout", h.clearSession) // TODO remove this
r.Get("/version", h.version)
})