Remove member groups controller TODO's

This commit is contained in:
Kenn Jacobsen
2018-12-19 19:43:18 +01:00
committed by Sebastiaan Janssen
parent 49387aaa02
commit 6ca2c27ed3

View File

@@ -19,12 +19,7 @@
: [model.selectedMemberGroup],
function(id) { return parseInt(id) }
);
// TODO: replace with memberGroupResource.getByIds(selectedGroupIds) if it's merged in (see #3845) - or rewrite it for this
memberGroupResource.getGroups().then(function (selectedGroups) {
// TODO: this filter can be removed once we have memberGroupResource.getByIds(selectedGroupIds)
selectedGroups = _.filter(selectedGroups, function(group) {
return selectedGroupIds.indexOf(group.id) >= 0;
});
memberGroupResource.getByIds(selectedGroupIds).then(function (selectedGroups) {
_.each(selectedGroups, function(group) {
$scope.model.value[group.name] = true;
});