diff options
Diffstat (limited to 'srv/src/api/render.go')
-rw-r--r-- | srv/src/api/render.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srv/src/api/render.go b/srv/src/api/render.go index 8fc2cb6..dfa665f 100644 --- a/srv/src/api/render.go +++ b/srv/src/api/render.go @@ -197,9 +197,9 @@ func (a *api) renderDumbHandler(tplName string) http.Handler { }) } -func (a *api) renderAdminAssets() http.Handler { +func (a *api) renderPostAssetsIndexHandler() http.Handler { - tpl := a.mustParseTpl("admin/assets.html") + tpl := a.mustParseTpl("admin-assets.html") return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { |