generic trigger credentials

This commit is contained in:
Jimmy Zelinskie 2015-04-22 17:07:16 -04:00
parent cfcd636cc0
commit 07b730c7ad
6 changed files with 66 additions and 45 deletions

View file

@ -0,0 +1,16 @@
/**
* An element which displays a credentials for a build trigger.
*/
angular.module('quay').directive('credentials', function() {
var directiveDefinitionObject = {
templateUrl: '/static/directives/credentials.html',
replace: false,
transclude: false,
restrict: 'C',
scope: {
'trigger': '=trigger'
},
controller: function($scope) {}
};
return directiveDefinitionObject;
});