mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
21 lines
486 B
TypeScript
21 lines
486 B
TypeScript
|
// services
|
||
|
import { APIService } from "services/api.service";
|
||
|
// types
|
||
|
import type { IUser } from "@plane/types";
|
||
|
// helpers
|
||
|
import { API_BASE_URL } from "helpers/common.helper";
|
||
|
|
||
|
export class UserService extends APIService {
|
||
|
constructor() {
|
||
|
super(API_BASE_URL);
|
||
|
}
|
||
|
|
||
|
async currentUser(): Promise<IUser> {
|
||
|
return this.get<IUser>("/api/instances/admins/me/")
|
||
|
.then((response) => response?.data)
|
||
|
.catch((error) => {
|
||
|
throw error?.response;
|
||
|
});
|
||
|
}
|
||
|
}
|