12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
|
|
|
|
const getCurrentUser = async ($: IGlobalVariable): Promise<IJSONObject> => {
|
|
// ref: https://docs.gitlab.com/ee/api/users.html#list-current-user
|
|
|
|
const response = await $.http.get('/api/v4/user');
|
|
const currentUser = response.data;
|
|
return currentUser;
|
|
};
|
|
|
|
export default getCurrentUser;
|