mirror of
https://github.com/portainer/portainer.git
synced 2025-07-30 18:59:41 +02:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
angular.module('portainer.docker').component('porImageRegistry', {
|
|
templateUrl: './porImageRegistry.html',
|
|
controller: 'porImageRegistryController',
|
|
bindings: {
|
|
'model': '=', // must be of type PorImageRegistryModel
|
|
'pullWarning': '<',
|
|
'labelClass': '@',
|
|
'inputClass': '@'
|
|
},
|
|
require: {
|
|
form: '^form'
|
|
}
|
|
});
|