fix(core): Fix oauth2 callback and add integration tests (no-changelog) (#10272)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-08-01 11:02:36 +02:00
committed by GitHub
parent 785c82cfec
commit efb71dd9ad
7 changed files with 120 additions and 11 deletions

View File

@@ -13,6 +13,7 @@ type EndpointGroup =
| 'me'
| 'users'
| 'auth'
| 'oauth2'
| 'owner'
| 'passwordReset'
| 'credentials'

View File

@@ -159,6 +159,10 @@ export const setupTestServer = ({
await import('@/controllers/auth.controller');
break;
case 'oauth2':
await import('@/controllers/oauth/oAuth2Credential.controller');
break;
case 'mfa':
await import('@/controllers/mfa.controller');
break;