feat(dropbox): support connections

This commit is contained in:
Ali BARIN
2023-04-01 23:00:25 +00:00
parent 3dc1ca8adb
commit 5c2b96a812
11 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
const getCurrentAccount = async ($: IGlobalVariable): Promise<IJSONObject> => {
const response = await $.http.post('/2/users/get_current_account', null);
return response.data;
};
export default getCurrentAccount;