We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998fba2 commit 6e98caaCopy full SHA for 6e98caa
1 file changed
src/tools/auth0/handlers/guardianFactorProviders.ts
@@ -75,6 +75,8 @@ export default class GuardianFactorProvidersHandler extends DefaultHandler {
75
// TODO: This is quite a change, needs to be validated for sure.
76
if (name === 'phone' && provider === 'twilio') {
77
await this.client.guardian.updatePhoneFactorProviderTwilio(data);
78
+ } else if (name === 'sms' && provider === 'twilio') {
79
+ await this.client.guardian.setSmsFactorProviderTwilio(data);
80
} else if (name === 'push-notification' && provider === 'apns') {
81
await this.client.guardian.updatePushNotificationProviderAPNS(data);
82
} else if (name === 'push-notification' && provider === 'fcm') {
0 commit comments