Files
automatisch/packages/backend/src/apps/dropbox/common/get-current-account.ts
2023-04-06 18:59:55 +00:00

9 lines
286 B
TypeScript

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;