Sprint 18: Lost-Dog CSS, Freunde-Aktivitäts-Feed, Events-Karte

This commit is contained in:
rene 2026-04-17 23:43:35 +02:00
parent cfdb3fbc19
commit 10d30bf565
8 changed files with 595 additions and 41 deletions

View file

@ -335,6 +335,7 @@ const API = (() => {
const friends = {
list() { return get('/friends/'); },
search(q) { return get(`/friends/search?q=${encodeURIComponent(q)}`); },
activity() { return get('/friends/activity'); },
sendRequest(userId) { return post(`/friends/request/${userId}`, {}); },
accept(friendshipId) { return post(`/friends/${friendshipId}/accept`, {}); },
decline(friendshipId) { return post(`/friends/${friendshipId}/decline`, {}); },