Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/server/src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export class AuthController {
sameSite: 'lax',
secure: process.env.NODE_ENV === 'production' ? true : false,
httpOnly: true,
domain:
process.env.NODE_ENV === 'production' ? '.comcamp.io' : 'localhost',
});
return res.redirect(process.env.CLIENT_REDIRECT_AUTH_URL);
}
Expand All @@ -65,6 +67,8 @@ export class AuthController {
sameSite: 'lax',
secure: process.env.NODE_ENV === 'production' ? true : false,
httpOnly: true,
domain:
process.env.NODE_ENV === 'production' ? '.comcamp.io' : 'localhost',
});
return res.redirect(process.env.CLIENT_REDIRECT_AUTH_URL);
}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/app/register/answer-academic/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function RegisterInfoPage() {
data.algo_answer1,
data.algo_answer2,
data.algo_answer3,
].join("\n\n"),
].join("\n<-----ALGO-ANSWER-SPLITTER----->\n"),
},
});
};
Expand Down
Loading