feat(miro): add create board action

This commit is contained in:
Rıdvan Akca
2023-09-25 15:20:34 +03:00
committed by Faruk AYDIN
parent fa8ac0a8ba
commit 221aa8687f
8 changed files with 141 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import actions from './actions';
export default defineApp({
name: 'Miro',
@@ -13,4 +14,5 @@ export default defineApp({
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
actions,
});