From b6143c9ab8bb2aac6517b9580bf72ebe485eb738 Mon Sep 17 00:00:00 2001 From: f0x52 Date: Mon, 20 Feb 2023 16:29:29 +0100 Subject: [feature] About page (#1495) * about page basics * more info, styling * update emoji sizing on about page contact card --- internal/web/web.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/web/web.go') diff --git a/internal/web/web.go b/internal/web/web.go index 08bac4583..a6b5a45da 100644 --- a/internal/web/web.go +++ b/internal/web/web.go @@ -104,6 +104,7 @@ func (m *Module) Route(r router.Router, mi ...gin.HandlerFunc) { r.AttachHandler(http.MethodGet, rssFeedPath, m.rssFeedGETHandler) r.AttachHandler(http.MethodGet, confirmEmailPath, m.confirmEmailGETHandler) r.AttachHandler(http.MethodGet, robotsPath, m.robotsGETHandler) + r.AttachHandler(http.MethodGet, aboutPath, m.aboutGETHandler) r.AttachHandler(http.MethodGet, domainBlockListPath, m.domainBlockListGETHandler) // Attach redirects from old endpoints to current ones for backwards compatibility -- cgit v1.2.3