Files
automatisch/packages/backend/src/apps/slack/common/get-current-user.ts
2022-11-05 23:57:33 +01:00

14 lines
373 B
TypeScript

import { IGlobalVariable, IJSONObject } from '@automatisch/types';
const getCurrentUser = async ($: IGlobalVariable): Promise<IJSONObject> => {
const params = {
user: $.auth.data.userId as string,
};
const response = await $.http.get('/users.info', { params });
const currentUser = response.data.user;
return currentUser;
};
export default getCurrentUser;