feat: add 'secureCookies' configuration variable to explicitly set the secure flag and prevent confusion
This commit is contained in:
@@ -334,7 +334,7 @@ export class AuthService {
|
||||
refreshToken?: string,
|
||||
accessToken?: string,
|
||||
) {
|
||||
const isSecure = this.config.get("general.appUrl").startsWith("https");
|
||||
const isSecure = this.config.get("general.secureCookies");
|
||||
if (accessToken)
|
||||
response.cookie("access_token", accessToken, {
|
||||
sameSite: "lax",
|
||||
|
||||
Reference in New Issue
Block a user