feat(vtiger-crm): add create opportunity action

This commit is contained in:
Rıdvan Akca
2024-01-16 18:18:55 +03:00
committed by Ali BARIN
parent 3bcd3f3cb7
commit ab897ada5a
12 changed files with 495 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ import addAuthHeader from './common/add-auth-header.js';
import setBaseUrl from './common/set-base-url.js';
import auth from './auth/index.js';
import triggers from './triggers/index.js';
import actions from './actions/index.js';
import dynamicData from './dynamic-data/index.js';
export default defineApp({
name: 'Vtiger CRM',
@@ -16,4 +18,6 @@ export default defineApp({
beforeRequest: [setBaseUrl, addAuthHeader],
auth,
triggers,
actions,
dynamicData,
});