Files
plane/dev-wiki/core/services/instance.service.ts
M. Palanikannan 22ae10cf88 [WIKI-383] feat: dev wiki app (#3411)
* dev: 1

* fix: tubro name

* fix : floating sidebar

* --wip-- [skip ci]

* wip-2

* --wip-- [skip ci]

* wip

* fix: working wiki

---------

Co-authored-by: VipinDevelops <vipinchaudhary1809@gmail.com>
2025-06-18 21:19:30 +05:30

38 lines
931 B
TypeScript

// types
import type { IInstanceInfo, IInstanceUpdate, TPage } 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) => response.data)
.catch((error) => {
throw error;
});
}
async getInstanceInfo(): Promise<IInstanceInfo> {
return this.get("/api/instances/")
.then((response) => response.data)
.catch((error) => {
throw error;
});
}
async checkForUpdates(): Promise<IInstanceUpdate> {
return this.get("/api/instances/check-updates/")
.then((response) => response.data)
.catch((error) => {
throw error;
});
}
}