diff --git a/internal/web/run.go b/internal/web/run.go index ec009c4..edee67f 100644 --- a/internal/web/run.go +++ b/internal/web/run.go @@ -321,7 +321,7 @@ func logged(next echo.HandlerFunc) echo.HandlerFunc { if user != nil { return next(ctx) } - return redirect(ctx, "/login") + return redirect(ctx, "/all") } }