From f3fc040c2effd85afa91d94bd409fa016980056e Mon Sep 17 00:00:00 2001 From: Mia Heidenstedt Date: Thu, 3 Nov 2022 13:15:31 +0100 Subject: [feature] Allow user to show instead of landing page on / (#922) * configurable user instead of landing page * rename DefaultUser to LandingPageUser * code review changes and fix tests * try to fix pipeline error * code review changes * code review changes * code review changes * remove unnecessary line --- internal/web/base.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'internal/web/base.go') diff --git a/internal/web/base.go b/internal/web/base.go index 61b4634ed..0dae30772 100644 --- a/internal/web/base.go +++ b/internal/web/base.go @@ -20,6 +20,7 @@ package web import ( "net/http" + "strings" "github.com/gin-gonic/gin" "github.com/superseriousbusiness/gotosocial/internal/api" @@ -28,6 +29,13 @@ import ( ) func (m *Module) baseHandler(c *gin.Context) { + + // if a landingPageUser is set in the config, redirect to that user's profile + if landingPageUser := config.GetLandingPageUser(); landingPageUser != "" { + c.Redirect(http.StatusFound, "/@"+c.Param(strings.ToLower(landingPageUser))) + return + } + host := config.GetHost() instance, err := m.processor.InstanceGet(c.Request.Context(), host) if err != nil { -- cgit v1.2.3