Skip to content

Commit

Permalink
Merge pull request #74 from theImmortalCoders/dev
Browse files Browse the repository at this point in the history
fix: #dev cookie essential potential fix
  • Loading branch information
marcinbator authored Jan 16, 2025
2 parents a9ade63 + 0c18a77 commit 6060687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rag-2-backend/Infrastructure/Module/Auth/AuthController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public async Task<string> Login([FromBody] [Required] UserLoginRequest loginRequ
Expires = DateTimeOffset.UtcNow.AddDays(
double.Parse(config["RefreshToken:ExpireDays"] ?? "30")),
HttpOnly = true,
// IsEssential = true,
IsEssential = true,
Secure = false
// SameSite = SameSiteMode.None
});
Expand Down

0 comments on commit 6060687

Please sign in to comment.