Lista Friends

This commit is contained in:
paoloar77
2022-01-05 19:11:47 +01:00
parent 0997ef1ec3
commit a1f2ced085
46 changed files with 282 additions and 13236 deletions

View File

@@ -828,6 +828,16 @@ export const useUserStore = defineStore('UserStore', {
return {}
})
},
async loadFriends(username: string) {
return Api.SendReq('/users/friends', 'POST', null)
.then((res) => {
return res.data
}).catch((error) => {
return {}
})
}
},
})