Start work on the repo permissions table

This commit is contained in:
Joseph Schorr 2015-03-16 14:17:27 -04:00
parent 1b6fc60c10
commit dc5d40ddc3
6 changed files with 246 additions and 3 deletions

View file

@ -0,0 +1,19 @@
/**
* An element which displays the settings panel for a repository view.
*/
angular.module('quay').directive('repoPanelSettings', function () {
var directiveDefinitionObject = {
priority: 0,
templateUrl: '/static/directives/repo-view/repo-panel-settings.html',
replace: false,
transclude: false,
restrict: 'C',
scope: {
'repository': '=repository'
},
controller: function($scope, $element, ApiService) {
}
};
return directiveDefinitionObject;
});