Skip to content

Commit

Permalink
Removed path from cookie because deleting the cookie was not working
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsignori-aot committed Feb 18, 2025
1 parent de1616f commit 65dd63d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ import {
} from "@sims/auth/constants";
import { ConfigService } from "@sims/utilities/config";
import { JwtService } from "@nestjs/jwt";
import * as dayjs from "dayjs";
import { Role } from "../../auth";
import { BULL_BOARD_ROUTE } from "@sims/services/constants";

@AllowAuthorizedParty(AuthorizedParties.aest)
@Groups(UserGroups.AESTUser)
Expand Down Expand Up @@ -125,7 +123,6 @@ export class UserAESTController extends BaseController {
httpOnly: true,
secure: true,
sameSite: "strict",
path: `/${BULL_BOARD_ROUTE}`,
};
if (process.env.NODE_ENV !== "production") {
cookieOptions.secure = false;
Expand Down

0 comments on commit 65dd63d

Please sign in to comment.