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