feat(trello): add create card action

This commit is contained in:
Rıdvan Akca
2023-10-27 13:03:22 +03:00
committed by Ali BARIN
parent 4f2155ea63
commit c944193fb4
12 changed files with 354 additions and 4 deletions

View File

@@ -1,6 +1,8 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import actions from './actions';
import dynamicData from './dynamic-data';
export default defineApp({
name: 'Trello',
@@ -13,4 +15,6 @@ export default defineApp({
primaryColor: '0079bf',
beforeRequest: [addAuthHeader],
auth,
actions,
dynamicData,
});