mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-22 14:49:40 +02:00
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
19 lines
659 B
TypeScript
19 lines
659 B
TypeScript
import { BaseCRUDAPI } from "../../base/base-clients";
|
|
import type { RecipeCommentCreate, RecipeCommentOut, RecipeCommentUpdate } from "~/lib/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));
|
|
}
|
|
}
|