Skip to content

Commit

Permalink
Remove account_name from create connection object in Flow Vault Conne…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
kushalshit27 committed Dec 12, 2024
1 parent 83b9740 commit cffa1ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tools/auth0/handlers/flowVaultConnections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ export default class FlowVaultHandler extends DefaultHandler {
if ('ready' in conn) {
delete conn.ready;
}
if ('account_name' in conn) {
delete conn.account_name;
}
const { data: created } = await this.client.flows.createConnection(conn);
return created;
}
Expand Down

0 comments on commit cffa1ef

Please sign in to comment.