feat: Implement send sms action of twilio

This commit is contained in:
Faruk AYDIN
2022-10-26 18:24:12 +02:00
committed by Ali BARIN
parent 4553084503
commit 7d7c96274d
4 changed files with 87 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
export default defineApp({
name: 'Twilio',
@@ -9,5 +10,5 @@ export default defineApp({
baseUrl: 'https://twilio.com',
apiBaseUrl: 'https://api.twilio.com',
primaryColor: 'e1000f',
beforeRequest: [],
beforeRequest: [addAuthHeader],
});