Remove httpOnly cooking attribute from SetCookie

This commit is contained in:
Cody 2024-10-05 14:03:20 -07:00 committed by GitHub
parent 3121cf5b75
commit 485b774876
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ namespace Oqtane.UI
_jsRuntime = jsRuntime;
}
public Task SetCookie(string name, string value, int days, bool secure, bool httpOnly, string sameSite)
public Task SetCookie(string name, string value, int days, bool secure, string sameSite)
{
try
{