feat(dropbox): add create folder action

This commit is contained in:
Ali BARIN
2023-04-02 15:53:57 +00:00
parent 5c2b96a812
commit 814c504951
3 changed files with 41 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: 'Dropbox',
@@ -13,4 +14,5 @@ export default defineApp({
primaryColor: '0061ff',
beforeRequest: [addAuthHeader],
auth,
actions,
});