mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-21 15:38:11 +00:00
Fix: azure auth callback from UI (#3048)
This commit is contained in:
parent
98ddf5fba3
commit
282c1f68ea
@ -95,7 +95,11 @@ export const getAuthConfig = (
|
||||
auth: {
|
||||
authority,
|
||||
clientId,
|
||||
redirectUri: 'http://localhost:3000/callback',
|
||||
redirectUri: isDev()
|
||||
? 'http://localhost:3000/callback'
|
||||
: !isNil(callbackUrl)
|
||||
? callbackUrl
|
||||
: `${window.location.origin}/callback`,
|
||||
postLogoutRedirectUri: '/',
|
||||
},
|
||||
cache: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user