forked from github/plane
26de35bd8d
* fix: envconfig type changes * chore: configuration variables (#2692) * chore: update avatar group logic (#2672) * chore: configuration variables --------- * fix: replacing slack client id with env config --------- Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com>
25 lines
555 B
TypeScript
25 lines
555 B
TypeScript
// services
|
|
import { APIService } from "services/api.service";
|
|
// helper
|
|
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;
|
|
});
|
|
}
|
|
}
|