Add public access to time machine

Fixes #333
This commit is contained in:
Joseph Schorr 2015-08-07 13:30:34 -04:00
parent 7d6c6ba8e8
commit 5044a4d58b
2 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,6 @@
<div class="repo-panel-tags-element">
<div class="tab-header-controls">
<div class="btn-group btn-group-sm" ng-show="repository.can_write">
<div class="btn-group btn-group-sm">
<button class="btn" ng-class="!showingHistory ? 'btn-primary active' : 'btn-default'" ng-click="showHistory(false)">
<i class="fa fa-tags"></i>Current Tags
</button>
@ -92,7 +92,7 @@
style="min-width: 120px;">
<a href="javascript:void(0)" ng-click="orderBy('image_id')">Image</a>
</td>
<td class="options-col" ng-if="repository.can_write"></td>
<td class="options-col"></td>
<td class="options-col"></td>
<td class="options-col"></td>
</thead>
@ -122,7 +122,7 @@
ng-click="fetchTagActionHandler.askFetchTag(tag)">
</i>
</td>
<td class="options-col" bo-if="repository.can_write">
<td class="options-col">
<div class="dropdown" style="text-align: left;">
<i class="fa fa-history dropdown-toggle" data-toggle="dropdown" data-title="Tag History"
ng-click="loadTagHistory(tag)"

View file

@ -276,7 +276,9 @@ angular.module('quay').directive('repoPanelTags', function () {
};
$scope.askRevertTag = function(tag, image_id) {
$scope.tagActionHandler.askRevertTag(tag, image_id);
if ($scope.repo.can_write) {
$scope.tagActionHandler.askRevertTag(tag, image_id);
}
};
}
};