mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
25 lines
562 B
TypeScript
25 lines
562 B
TypeScript
// services
|
|
import { API_BASE_URL } from "@/helpers/common.helper";
|
|
import { APIService } from "@/services/api.service";
|
|
// helper
|
|
// types
|
|
import { IAppConfig } from "@plane/types";
|
|
|
|
export class AppConfigService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async envConfig(): Promise<IAppConfig> {
|
|
return this.get("/api/configs/", {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
})
|
|
.then((response) => response.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|