bb-plane-fork/space/core/services/label.service.ts
sriram veeraghanta fa3aa362a9 fix: lint errors
2024-12-04 17:22:41 +05:30

18 lines
486 B
TypeScript

import { API_BASE_URL } from "@plane/constants";
import { IIssueLabel } from "@plane/types";
// services
import { APIService } from "./api.service";
export class LabelService extends APIService {
constructor() {
super(API_BASE_URL);
}
async getLabels(anchor: string): Promise<IIssueLabel[]> {
return this.get(`/api/public/anchor/${anchor}/labels/`)
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;
});
}
}