Skip to content

Commit

Permalink
Add COOKIE_AUTH_ENABLED to node config
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg committed Oct 2, 2024
1 parent 29a24ab commit 8e2b322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ app.get('/config/project-overrides', (req, res) => {
{ name: 'albacross', value: process.env.ALBACROSS_CLIENT_ID },
{ name: 'useSecureCookies', value: envToBool('USE_SECURE_COOKIES', true) },
{ name: 'cookieSameSite', value: process.env.USE_SECURE_COOKIES },
{ name: 'cookieAuthEnabled', value: envToBool(process.env.COOKIE_AUTH_ENABLED) },
{ name: 'cookieAuthEnabled', value: process.env.COOKIE_AUTH_ENABLED },
{
name: 'githubAppURL',
value: process.env.GITHUB_APP_URL,
Expand Down

0 comments on commit 8e2b322

Please sign in to comment.