Skip to content
Snippets Groups Projects
Commit 6137fcc5 authored by Erik Borgeteien Hansen's avatar Erik Borgeteien Hansen
Browse files

add api calls to service

parent 974a46d9
No related branches found
No related tags found
2 merge requests!87Community request,!86Community admin
......@@ -7,41 +7,54 @@ const API_URL = process.env.VUE_APP_BASEURL;
* Service class acting as a middle layer between our components and the API
*/
class CommunityAdminService {
async isUserAdmin() {
async isUserAdmin(communityID) {
return await axios
.get(
API_URL +
"communities/" +
this.$route.params.communityID +
"/user/admin",
{
headers: tokenHeader(),
}
)
.get(API_URL + "communities/" + communityID + "/user/admin", {
headers: tokenHeader(),
})
.then((res) => {
return res.data;
});
}
//TODO
acceptUserIntoCommunity() {}
async acceptUserIntoCommunity(communityID, userID) {
return await axios.post(
API_URL + "communities/" + communityID + "/requests",
{ params: { userId: userID } }
);
}
//TODO
rejectUserFromCommunity() {}
async rejectUserFromCommunity(communityID, userID) {
return await axios.patch(
API_URL + "communitites/" + communityID + "/requests/reject",
{
params: { userId: userID },
}
);
}
//TODO
async removeUserFromCommunity(user, community) {
return await axios.post(API_URL + "communities/" + community.id + "/leave");
/**
* Method that kicks a user from a community
* @param {int} communityID the community to remove the user from
* @param {int} userID the user to remove
* @returns TODO
*/
async removeUserFromCommunity(communityID, userID) {
return await axios.patch(API_URL + "communities/" + communityID + "/kick", {
params: { userId: userID },
});
}
/**
* Method to delete a community
* @param {int} communityId id of the community to delete.
* @param {int} communityID id of the community to delete.
* @returns TODO
*/
async deleteCommunity(communityId) {
async deleteCommunity(communityID) {
return await axios.post(
API_URL + "communities/" + communityId + "/remove",
API_URL + "communities/" + communityID + "/remove",
{
headers: tokenHeader(),
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment