mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
|
import APIService from "services/api.service";
|
||
|
|
||
|
// types
|
||
|
import { IJiraMetadata, IJiraResponse, IJiraImporterForm } from "types";
|
||
|
|
||
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
||
|
|
||
|
class JiraImportedService extends APIService {
|
||
|
constructor() {
|
||
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
||
|
}
|
||
|
|
||
|
async getJiraProjectInfo(workspaceSlug: string, params: IJiraMetadata): Promise<IJiraResponse> {
|
||
|
return this.get(`/api/workspaces/${workspaceSlug}/importers/jira`, {
|
||
|
params,
|
||
|
})
|
||
|
.then((response) => response?.data)
|
||
|
.catch((error) => {
|
||
|
throw error?.response?.data;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async createJiraImporter(workspaceSlug: string, data: IJiraImporterForm): Promise<IJiraResponse> {
|
||
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/importers/jira/`, data)
|
||
|
.then((response) => response?.data)
|
||
|
.catch((error) => {
|
||
|
throw error?.response?.data;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const jiraImporterService = new JiraImportedService();
|
||
|
|
||
|
export default jiraImporterService;
|