* [WEB-3065] refactor: replace admin services with service packages * chore: minor updates * chore: error handling
18 lines
539 B
TypeScript
18 lines
539 B
TypeScript
import { API_BASE_URL } from "@plane/constants";
|
|
import { APIService } from "../api.service";
|
|
|
|
export default class IntakeIssueService extends APIService {
|
|
constructor(BASE_URL?: string) {
|
|
super(BASE_URL || API_BASE_URL);
|
|
}
|
|
|
|
async list(workspaceSlug: string, projectId: string, params = {}) {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/inbox-issues/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|