mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-30 19:54:44 -04:00
20 lines
644 B
TypeScript
20 lines
644 B
TypeScript
import { BaseCRUDAPI } from "~/api/_base";
|
|
import { RecipeCommentCreate, RecipeCommentOut, RecipeCommentUpdate } from "~/types/api-types/recipe";
|
|
|
|
const prefix = "/api";
|
|
|
|
const routes = {
|
|
comment: `${prefix}/comments`,
|
|
byRecipe: (id: string) => `${prefix}/recipes/${id}/comments`,
|
|
commentsId: (id: string) => `${prefix}/comments/${id}`,
|
|
};
|
|
|
|
export class CommentsApi extends BaseCRUDAPI<RecipeCommentCreate, RecipeCommentOut, RecipeCommentUpdate> {
|
|
baseRoute: string = routes.comment;
|
|
itemRoute = routes.commentsId;
|
|
|
|
async byRecipe(slug: string) {
|
|
return await this.requests.get<RecipeCommentOut[]>(routes.byRecipe(slug));
|
|
}
|
|
}
|