mirror of https://github.com/portainer/portainer
15 lines
364 B
JavaScript
15 lines
364 B
JavaScript
angular.module('portainer.docker').component('porImageRegistry', {
|
|
templateUrl: './porImageRegistry.html',
|
|
controller: 'porImageRegistryController',
|
|
bindings: {
|
|
'model': '=', // must be of type PorImageRegistryModel
|
|
'pullWarning': '<',
|
|
'autoComplete': '<',
|
|
'labelClass': '@',
|
|
'inputClass': '@'
|
|
},
|
|
require: {
|
|
form: '^form'
|
|
}
|
|
});
|