feat(pipedrive): add pipedrive integration

This commit is contained in:
Rıdvan Akca
2023-09-21 16:25:36 +03:00
committed by Faruk AYDIN
parent 6a66b65f2a
commit f53909355f
10 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
export default defineApp({
name: 'Pipedrive',
key: 'pipedrive',
baseUrl: '',
apiBaseUrl: '',
iconUrl: '{BASE_URL}/apps/pipedrive/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/pipedrive/connection',
primaryColor: 'FFFFFF',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
});