1
0

Revert redirection when not logged to /all (#76)

هذا الالتزام موجود في:
Thomas Miceli
2023-07-03 16:31:03 +02:00
ملتزم من قبل GitHub
الأصل add0299442
التزام 7515e82d34

عرض الملف

@@ -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")
}
}