Persist auth keys across deployments

This commit is contained in:
2026-07-09 13:40:18 +09:00
parent 57ba5fd108
commit 03e822f8d5
2 changed files with 11 additions and 1 deletions
+2 -1
View File
@@ -95,7 +95,8 @@ public class LoginModel(AuthService authService) : PageModel
var properties = new AuthenticationProperties
{
IsPersistent = false,
IsPersistent = true,
ExpiresUtc = DateTimeOffset.UtcNow.AddHours(12),
RedirectUri = RedirectUrl
};