display group membership on the profile page (/me)

This commit is contained in:
Sebastian Sdorra
2019-01-17 15:40:11 +01:00
parent b2e1dcf0e9
commit 66357ca196
12 changed files with 392 additions and 292 deletions

View File

@@ -134,15 +134,6 @@ const callFetchMe = (link: string): Promise<Me> => {
.get(link)
.then(response => {
return response.json();
})
.then(json => {
const { name, displayName, mail, _links } = json;
return {
name,
displayName,
mail,
_links
};
});
};