Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #328 from serlo/format
Browse files Browse the repository at this point in the history
refactor: Format src/backend/server.ts
  • Loading branch information
kulla authored Jan 24, 2024
2 parents 6759c96 + ba6d5ca commit a447cbf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/backend/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ Provider.setup(
process.env.EDITOR_KEY_FOR_SIGNING_COOKIES_AND_ENCRYPTING_DATABASE_ENTRIES,
ltiMongoDBConfig,
{
cookies: { secure: process.env.COOKIE_FLAG_SECURE ?? true, sameSite: process.env.COOKIE_FLAG_SAME_SITE ?? 'none' },
cookies: {
secure: process.env.COOKIE_FLAG_SECURE ?? true,
sameSite: process.env.COOKIE_FLAG_SAME_SITE ?? 'none',
},
devMode: false,
},
)
Expand Down

1 comment on commit a447cbf

@vercel
Copy link

@vercel vercel bot commented on a447cbf Jan 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.