feat: Implement twilio receive sms trigger

This commit is contained in:
Faruk AYDIN
2022-10-26 18:25:49 +02:00
parent f3f9af9fdf
commit 9506c22016
4 changed files with 69 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import triggers from './triggers';
import actions from './actions';
export default defineApp({
@@ -14,5 +15,6 @@ export default defineApp({
primaryColor: 'e1000f',
beforeRequest: [addAuthHeader],
auth,
triggers,
actions,
});