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

add admin check to service

parent ec99111e
No related branches found
No related tags found
2 merge requests!87Community request,!86Community admin
......@@ -7,6 +7,22 @@ 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() {
return await axios
.get(
API_URL +
"communities/" +
this.$route.params.communityID +
"/user/admin",
{
headers: tokenHeader(),
}
)
.then((res) => {
return res.data;
});
}
//TODO
acceptUserIntoCommunity() {}
......@@ -26,7 +42,9 @@ class CommunityAdminService {
async deleteCommunity(communityId) {
return await axios.post(
API_URL + "communities/" + communityId + "/remove",
tokenHeader
{
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