plane/space/services/app-config.service.ts

25 lines
556 B
TypeScript
Raw Normal View History

// services
2024-03-19 14:38:35 +00:00
import APIService from "@/services/api.service";
// helper
2024-03-19 14:38:35 +00:00
import { API_BASE_URL } from "@/helpers/common.helper";
// types
import { IAppConfig } from "types/app";
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;
});
}
}