|
|
|
@ -46,10 +46,12 @@ export class SocialService extends BaseService {
|
|
|
|
|
const body = SocialService.buildGroupCreateBody(name);
|
|
|
|
|
return this.postGraphql(body, null, 0)
|
|
|
|
|
.pipe(tap(response => {
|
|
|
|
|
let group = new Group();
|
|
|
|
|
group = response.data.createGroup;
|
|
|
|
|
group.picture = group.buildPictureUrl(group.picture);
|
|
|
|
|
this.data.addGroupToUser(group);
|
|
|
|
|
const group = response.data.createGroup;
|
|
|
|
|
this.data.addGroupToUser(new GroupInfo(
|
|
|
|
|
group.id,
|
|
|
|
|
group.name,
|
|
|
|
|
group.picture,
|
|
|
|
|
group.deletable));
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|