feat: add profile friend view

This commit is contained in:
Kentai Radiquum 2025-04-04 14:15:47 +05:00
parent 0730b7c7d4
commit 256ecea885
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 441 additions and 59 deletions

View file

@ -19,6 +19,14 @@ export const ENDPOINTS = {
history: `${API_PREFIX}/history`,
favorite: `${API_PREFIX}/favorite`,
blocklist: `${API_PREFIX}/profile/blocklist`,
friend: {
list: `${API_PREFIX}/profile/friend/all`,
add: `${API_PREFIX}/profile/friend/request/send`,
remove: `${API_PREFIX}/profile/friend/request/remove`,
hide: `${API_PREFIX}/profile/friend/request/hide`,
in: `${API_PREFIX}/profile/friend/requests/in`,
out: `${API_PREFIX}/profile/friend/requests/out`,
},
settings: {
my: `${API_PREFIX}/profile/preference/my`,
login: {