diff --git a/http/main.go b/http/main.go index c89c08a..74dd413 100644 --- a/http/main.go +++ b/http/main.go @@ -36,8 +36,7 @@ func Serve(bindAddr string) error { } func handleIndex(ctx echo.Context) error { - // return ctx.Redirect(http.StatusTemporaryRedirect, "/v") - return ctx.String(200, ctx.Request().Header.Get("X-Remote-User")) + return ctx.Redirect(http.StatusTemporaryRedirect, "/v") } func handleNewVoting(ctx echo.Context) error {