#328430 Order user groups alphabetically as well.

This commit is contained in:
Georgi Prodanov 2017-02-07 11:40:29 +02:00
Родитель 2bd9fe06c1
Коммит 1ae5dff68b
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -98,11 +98,11 @@ export class GroupsService {
}
getUserGroups(userId: string) {
let query = this._elProvider.getNewQuery();
query.where({ UserId: userId });
query.expand(this._expandGroupInMembership);
return this._membershipsData.get(query).then(r => r.result.map(gm => gm.Group));
return this._membershipsData.get({ UserId: userId })
.then(resp => {
let userGroupsIds = resp.result.map(reg => reg.GroupId);
return this._getGroupsByFilter({ Id: { $in: userGroupsIds }});
});
}
getGroupMembers(groupId: string) {