diff options
Diffstat (limited to 'srv/src/http/api.go')
-rw-r--r-- | srv/src/http/api.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srv/src/http/api.go b/srv/src/http/api.go index 3cb4ba5..19a65d9 100644 --- a/srv/src/http/api.go +++ b/srv/src/http/api.go @@ -216,6 +216,8 @@ func (a *api) blogHandler() http.Handler { mux.Handle("/static/", http.FileServer(http.FS(staticFS))) mux.Handle("/follow", a.renderDumbTplHandler("follow.html")) + mux.Handle("/mailinglist/unsubscribe", a.renderDumbTplHandler("unsubscribe.html")) + mux.Handle("/mailinglist/finalize", a.renderDumbTplHandler("finalize.html")) mux.Handle("/feed.xml", a.renderFeedHandler()) mux.Handle("/", a.renderIndexHandler()) |