We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e2b36 commit 552ebf4Copy full SHA for 552ebf4
1 file changed
src/auth/application/controller/auth/controller.ts
@@ -73,7 +73,7 @@ export class AuthController {
73
const session = req.cookies?.['refresh'];
74
const response = await this.facade.signOut(session);
75
76
- res.clearCookie('refresh', { path: '/' });
+ res.clearCookie('refresh', { path: '/', domain: `.${this.domain}` });
77
78
return response;
79
}
0 commit comments