mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: revert OIDC advanced param to URL-based heuristic per design intent
This commit is contained in:
@@ -148,7 +148,7 @@
|
||||
}
|
||||
|
||||
function isOidcAdvancedParam(id: string): boolean {
|
||||
return id === 'authorizationURL' || id === 'tokenUrl' || id === 'userInfoUrl';
|
||||
return id !== 'wellKnownURL' && id.toLowerCase().includes('url');
|
||||
}
|
||||
|
||||
async function handleP8FileUpload(id: string, event: Event) {
|
||||
|
||||
Reference in New Issue
Block a user