Skip to content

Commit

Permalink
fix(authentication-service): fix minor issues in azure oauth (#985)
Browse files Browse the repository at this point in the history
gh-00
  • Loading branch information
yeshamavani authored Aug 20, 2022
1 parent 8a38628 commit af272a6
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,11 @@ export class AzureLoginController {
responseMode: 'query',
redirectUrl: process.env.AZURE_AUTH_REDIRECT_URL,
clientSecret: process.env.AZURE_AUTH_CLIENT_SECRET,
allowHttpForRedirectUrl: !process.env.AZURE_AUTH_ALLOW_HTTP_REDIRECT,
allowHttpForRedirectUrl: !!process.env.AZURE_AUTH_ALLOW_HTTP_REDIRECT,
passReqToCallback: !!process.env.AZURE_AUTH_PASS_REQ_CALLBACK,
validateIssuer: !!process.env.AZURE_AUTH_VALIDATE_ISSUER,
useCookieInsteadOfSession: !process.env.AZURE_AUTH_COOKIE_INSTEAD_SESSION,
useCookieInsteadOfSession:
!!process.env.AZURE_AUTH_COOKIE_INSTEAD_SESSION,
cookieEncryptionKeys: [
{
key: process.env.AZURE_AUTH_COOKIE_KEY,
Expand Down

0 comments on commit af272a6

Please sign in to comment.