Skip to content
Snippets Groups Projects
Commit 4d307380 authored by srosse's avatar srosse
Browse files

OO-455: owner can delete groups too

parent 89a20a3d
No related branches found
No related tags found
No related merge requests found
...@@ -829,7 +829,7 @@ public abstract class AbstractBusinessGroupListController extends BasicControlle ...@@ -829,7 +829,7 @@ public abstract class AbstractBusinessGroupListController extends BasicControlle
BusinessGroupMembership membership = memberships.get(group.getKey()); BusinessGroupMembership membership = memberships.get(group.getKey());
Boolean allowLeave = membership != null; Boolean allowLeave = membership != null;
Boolean allowDelete = admin ? Boolean.TRUE : null; Boolean allowDelete = admin ? Boolean.TRUE : (membership == null ? null : new Boolean(membership.isOwner()));
boolean marked = markedResources.contains(group.getResource().getResourceableId()); boolean marked = markedResources.contains(group.getResource().getResourceableId());
BGTableItem tableItem = new BGTableItem(group, marked, membership, allowLeave, allowDelete, accessMethods); BGTableItem tableItem = new BGTableItem(group, marked, membership, allowLeave, allowDelete, accessMethods);
tableItem.setUnfilteredRelations(resources); tableItem.setUnfilteredRelations(resources);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment