mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
// types
|
|
import type {
|
|
IFormattedInstanceConfiguration,
|
|
IInstance,
|
|
IInstanceAdmin,
|
|
IInstanceConfiguration,
|
|
IInstanceInfo,
|
|
} from "@plane/types";
|
|
// helpers
|
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
|
import { APIService } from "@/services/api.service";
|
|
|
|
export class InstanceService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async getInstanceInfo(): Promise<IInstanceInfo> {
|
|
return this.get<IInstanceInfo>("/api/instances/")
|
|
.then((response) => response.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getInstanceAdmins(): Promise<IInstanceAdmin[]> {
|
|
return this.get<IInstanceAdmin[]>("/api/instances/admins/")
|
|
.then((response) => response.data)
|
|
.catch((error) => {
|
|
throw error;
|
|
});
|
|
}
|
|
|
|
async updateInstanceInfo(data: Partial<IInstance>): Promise<IInstance> {
|
|
return this.patch<Partial<IInstance>, IInstance>("/api/instances/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getInstanceConfigurations() {
|
|
return this.get<IInstanceConfiguration[]>("/api/instances/configurations/")
|
|
.then((response) => response.data)
|
|
.catch((error) => {
|
|
throw error;
|
|
});
|
|
}
|
|
|
|
async updateInstanceConfigurations(
|
|
data: Partial<IFormattedInstanceConfiguration>
|
|
): Promise<IInstanceConfiguration[]> {
|
|
return this.patch<Partial<IFormattedInstanceConfiguration>, IInstanceConfiguration[]>(
|
|
"/api/instances/configurations/",
|
|
data
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async sendTestEmail(receiverEmail: string): Promise<undefined> {
|
|
return this.post<{ receiver_email: string }, undefined>("/api/instances/email-credentials-check/", {
|
|
receiver_email: receiverEmail,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|