Make Admin group members visible
This commit is contained in:
@@ -249,7 +249,7 @@
|
||||
<span ng-show="isMe(user)" class="label label-success">This is you!</span>
|
||||
</td>
|
||||
<td class="text-right" style="vertical-align: bottom">
|
||||
<span ng-repeat="groupId in user.groupIds" class="label label-default">{{ groupId }}</span>
|
||||
<span ng-repeat="groupId in user.groupIds" class="label label-default" ng-class="{ 'label-danger': groupId === 'admin' }">{{ groupId === 'admin' ? 'Admin' : groupId }}</span>
|
||||
</td>
|
||||
<td class="text-right" style="vertical-align: bottom">
|
||||
<button ng-show="!isMe(user)" class="btn btn-xs btn-default" ng-click="sendInvite(user)" title="Send Invite"><i class="fa fa-paper-plane-o"></i></button>
|
||||
|
||||
Reference in New Issue
Block a user