feat(vtiger-crm): add create case action

This commit is contained in:
Rıdvan Akca
2024-01-17 11:26:56 +03:00
committed by Ali BARIN
parent a6cc1566c7
commit 9a96258265
10 changed files with 680 additions and 1 deletions

View File

@@ -1,6 +1,13 @@
import createCase from './create-case/index.js';
import createContact from './create-contact/index.js';
import createLead from './create-lead/index.js';
import createOpportunity from './create-opportunity/index.js';
import createTodo from './create-todo/index.js';
export default [createContact, createLead, createOpportunity, createTodo];
export default [
createCase,
createContact,
createLead,
createOpportunity,
createTodo,
];