mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
c9d8a8dbd1
* chore: github importer first step completed * refactor: github importer code refactored * chore: github importer functionality completed * fix: import data step saved data
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import APIService from "services/api.service";
|
|
// types
|
|
import { IAppIntegrations, IImporterService, IWorkspaceIntegrations } from "types";
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
class IntegrationService extends APIService {
|
|
constructor() {
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
}
|
|
|
|
async getAppIntegrationsList(): Promise<IAppIntegrations[]> {
|
|
return this.get(`/api/integrations/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getWorkspaceIntegrationsList(workspaceSlug: string): Promise<IWorkspaceIntegrations[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/workspace-integrations/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deleteWorkspaceIntegration(workspaceSlug: string, integrationId: string): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspaceSlug}/workspace-integrations/${integrationId}/provider/`
|
|
)
|
|
.then((res) => res?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getImporterServicesList(workspaceSlug: string): Promise<IImporterService[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/importers/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new IntegrationService();
|