adding stuff
All checks were successful
Recommender Build and Deploy (internal) / Build Recommender Image (push) Successful in 4m6s
Recommender Build and Deploy (internal) / Deploy Recommender (internal) (push) Successful in 12s

This commit is contained in:
2026-03-31 17:21:50 -03:00
parent be2d8d70cb
commit bb8a5da45e
10 changed files with 106 additions and 9 deletions

View File

@@ -55,3 +55,7 @@ export function submitFeedback(body: {
export function getFeedback(): Promise<FeedbackEntry[]> {
return request('/feedback');
}
export function deleteRecommendation(id: string): Promise<{ ok: boolean }> {
return request(`/recommendations/${id}`, { method: 'DELETE' });
}