Feature: Aktive Erinnerungen, Versicherung, Verhaltensprotokoll, Hundefreundliche Orte (SW by-v874)
This commit is contained in:
parent
83034c0db0
commit
b818f85f36
11 changed files with 589 additions and 14 deletions
|
|
@ -219,6 +219,14 @@ const API = (() => {
|
|||
gewichtVerlauf(dogId) {
|
||||
return get(`/dogs/${dogId}/health/gewicht`);
|
||||
},
|
||||
reminders(dogId) { return get(`/dogs/${dogId}/reminders`); },
|
||||
insuranceList(dogId) { return get(`/dogs/${dogId}/insurance`); },
|
||||
insuranceCreate(dogId, d) { return post(`/dogs/${dogId}/insurance`, d); },
|
||||
insuranceUpdate(dogId, id, d) { return patch(`/dogs/${dogId}/insurance/${id}`, d); },
|
||||
insuranceDelete(dogId, id) { return del(`/dogs/${dogId}/insurance/${id}`); },
|
||||
behaviorList(dogId) { return get(`/dogs/${dogId}/behavior`); },
|
||||
behaviorCreate(dogId, d) { return post(`/dogs/${dogId}/behavior`, d); },
|
||||
behaviorDelete(dogId, id) { return del(`/dogs/${dogId}/behavior/${id}`); },
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue