feat(google-calendar): add new calendar trigger

This commit is contained in:
Rıdvan Akca
2023-09-18 15:17:05 +03:00
parent 9a192b708e
commit 2dae8c162d
6 changed files with 78 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';
export default defineApp({
name: 'Google Calendar',
@@ -13,4 +14,5 @@ export default defineApp({
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
triggers,
});