Remove resolved FIXME

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2018-03-05 12:58:31 +01:00 committed by John Molakvoæ (skjnldsv)
parent 720e64ba55
commit 1f9a5c0d7f
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
1 changed files with 2 additions and 2 deletions

View File

@ -170,11 +170,11 @@
}).done(function(response) {
// add admin groups
$.each(response.data.adminGroups, function(id, group) {
self.groups.push({ id: group.id, displayname: group.name+'FIXME' });
self.groups.push({ id: group.id, displayname: group.name });
});
// add groups
$.each(response.data.groups, function(id, group) {
self.groups.push({ id: group.id, displayname: group.name+'FIXME' });
self.groups.push({ id: group.id, displayname: group.name });
});
self.render();
}).fail(function(response) {