1f5e6df678
- Add new endpoints for retrieving the repo permissions for a robot account - Have the robots list return the number of repositories for which there are permissions - Other UI fixes
6 lines
295 B
HTML
6 lines
295 B
HTML
<div class="btn-group btn-group-sm">
|
|
<button ng-repeat="role in roles"
|
|
type="button" class="btn" ng-click="setRole(role.id)"
|
|
ng-class="(currentRole == role.id) ? ('active btn-' + role.kind) : 'btn-default'"
|
|
ng-disabled="readOnly">{{ role.title }}</button>
|
|
</div>
|