mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
|
// types
|
||
|
import type { IInstance } from "@plane/types";
|
||
|
// helpers
|
||
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
||
|
// services
|
||
|
import APIService from "@/services/api.service";
|
||
|
|
||
|
export class InstanceService extends APIService {
|
||
|
constructor() {
|
||
|
super(API_BASE_URL);
|
||
|
}
|
||
|
|
||
|
async requestCSRFToken(): Promise<{ csrf_token: string }> {
|
||
|
return this.get("/auth/get-csrf-token/")
|
||
|
.then((response) => {
|
||
|
this.setCSRFToken(response.data.csrf_token);
|
||
|
return response.data;
|
||
|
})
|
||
|
.catch((error) => {
|
||
|
throw error;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async getInstanceInfo(): Promise<IInstance> {
|
||
|
return this.get("/api/instances/")
|
||
|
.then((response) => response.data)
|
||
|
.catch((error) => {
|
||
|
throw error;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async createInstanceAdmin(data: FormData): Promise<void> {
|
||
|
return this.post("/api/instances/admins/sign-in/", {
|
||
|
headers: {
|
||
|
"Content-Type": "multipart/form-data",
|
||
|
"X-CSRFToken": this.getCSRFToken(),
|
||
|
},
|
||
|
data,
|
||
|
})
|
||
|
.then((response) => {
|
||
|
console.log("response.data", response.data);
|
||
|
response.data;
|
||
|
})
|
||
|
.catch((error) => {
|
||
|
throw error;
|
||
|
});
|
||
|
}
|
||
|
}
|