Files
plane/web/core/services/instance.service.ts
Prateek Shourya 45cc7a4090 [WEB-2465] chore: check for updates. (#1148)
* chore: check for updates.

* chore: check for updates

---------

Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
2024-09-17 14:27:58 +05:30

45 lines
1.1 KiB
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 getInstanceChangeLog(changelogUrl: string): Promise<TPage> {
return this.get(changelogUrl)
.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;
});
}
}