mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-22 07:58:06 +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: {
|
auth: {
|
||||||
authority,
|
authority,
|
||||||
clientId,
|
clientId,
|
||||||
redirectUri: 'http://localhost:3000/callback',
|
redirectUri: isDev()
|
||||||
|
? 'http://localhost:3000/callback'
|
||||||
|
: !isNil(callbackUrl)
|
||||||
|
? callbackUrl
|
||||||
|
: `${window.location.origin}/callback`,
|
||||||
postLogoutRedirectUri: '/',
|
postLogoutRedirectUri: '/',
|
||||||
},
|
},
|
||||||
cache: {
|
cache: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user