
* feat(zendesk): add zendesk integration * Add Zendesk connection documentation * docs(zendesk/connection): add missing steps * feat(zendesk): add more auth scopes for planned triggers/actions * fix(zendesk): fix instanceUrl --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
|
|
|
|
const getCurrentUser = async ($: IGlobalVariable): Promise<IJSONObject> => {
|
|
const response = await $.http.get('/api/v2/users/me');
|
|
const currentUser = response.data.user;
|
|
|
|
return currentUser;
|
|
};
|
|
|
|
export default getCurrentUser;
|