feat(vtiger-crm): add vtiger crm integration

This commit is contained in:
Rıdvan Akca
2024-01-03 14:25:12 +03:00
parent 953c5a5b5b
commit 57d5f34ac5
10 changed files with 1996 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import defineApp from '../../helpers/define-app.js';
import addAuthHeader from './common/add-auth-header.js';
import setBaseUrl from './common/set-base-url.js';
import auth from './auth/index.js';
export default defineApp({
name: 'Vtiger CRM',
key: 'vtiger-crm',
iconUrl: '{BASE_URL}/apps/vtiger-crm/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/vtiger-crm/connection',
supportsConnections: true,
baseUrl: '',
apiBaseUrl: '',
primaryColor: '39a86d',
beforeRequest: [setBaseUrl, addAuthHeader],
auth,
});