We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ca43e commit c565e20Copy full SHA for c565e20
src/tools/auth0/handlers/clients.ts
@@ -329,6 +329,12 @@ export default class ClientHandler extends DefaultAPIHandler {
329
// As it could cause problems if it gets deleted or updated etc
330
const currentClient = this.config('AUTH0_CLIENT_ID') || '';
331
332
+ /*
333
+ * Filter out:
334
+ * - The client used to access Auth0 Management API
335
+ * - Clients in the exclusion list
336
+ * - Third-party clients when AUTH0_EXCLUDE_THIRD_PARTY_CLIENTS is enabled
337
+ */
338
const filterClients = (list: Client[]): Client[] =>
339
list.filter(
340
(item) =>
0 commit comments