mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
23 lines
504 B
TypeScript
23 lines
504 B
TypeScript
// helpers
|
|
import { API_BASE_URL } from "helpers/common.helper";
|
|
// services
|
|
import { APIService } from "services/api.service";
|
|
|
|
type TCsrfTokenResponse = {
|
|
csrf_token: string;
|
|
};
|
|
|
|
export class AuthService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async requestCSRFToken(): Promise<TCsrfTokenResponse> {
|
|
return this.get<TCsrfTokenResponse>("/auth/get-csrf-token/")
|
|
.then((response) => response.data)
|
|
.catch((error) => {
|
|
throw error;
|
|
});
|
|
}
|
|
}
|