Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Git access control: Show org name for github. #315

Merged
merged 1 commit into from
Apr 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/front/src/app/git-access-control/access-control.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@ <h2>Git Access Control</h2>
<thead>
<tr>
<th class="col-lg-2" data-sort-ignore="true">Team Name</th>
<th class="col-lg-2" data-sort-ignore="true">Organization</th>
<th class="col-lg-2" data-sort-ignore="true">Get Link</th>
<th class="col-lg-2" data-sort-ignore="true">Remove All Users</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in tableConfig.github.items" ng-class-even="'footable-even'" ng-class-odd="'footable-odd'">
<td class="col-lg-2">{{item.name}}</td>
<td class="col-lg-2">{{item.organization.login}}</td>
<td class="col-lg-2">
<button class="btn btn-sm btn-success" ng-hide="item.gettingLink" ng-click="getSharableLink(item, 'github')">
<strong>Get Link</strong>
Expand Down