Merge pull request #2593 from coreos-inc/trust-disabled-no-call
Don't make signing call unless trust is explicitly enabled
This commit is contained in:
commit
4764756f85
1 changed files with 4 additions and 0 deletions
|
@ -45,6 +45,10 @@ angular.module('quay').directive('repoPanelTags', function () {
|
|||
$scope.hasDefcon1 = false;
|
||||
|
||||
var loadRepoSignatures = function() {
|
||||
if (!$scope.repository || !$scope.repository.trust_enabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
$scope.repoSignatureError = false;
|
||||
$scope.repoSignatureInfo = null;
|
||||
|
||||
|
|
Reference in a new issue