NotificationsTab

This commit is contained in:
aeroreyna
2022-03-12 21:39:57 -08:00
parent dd3685b862
commit 0e8c0a17d0
6 changed files with 111 additions and 3 deletions

3
API.js
View File

@@ -129,6 +129,9 @@ const API = {
if (userid) return getCall("/post/usr/" + userid);
return getCall("/post/");
},
getPost(postid) {
return getCall("/post/" + postid);
},
deletePost(postid){
return deleteCall("/post/" + postid);
},