mirror of https://github.com/portainer/portainer
19 lines
470 B
JavaScript
19 lines
470 B
JavaScript
|
import angular from 'angular';
|
||
|
|
||
|
import controller from './por-image-registry-rate-limits.controller';
|
||
|
|
||
|
angular.module('portainer.docker').component('porImageRegistryRateLimits', {
|
||
|
bindings: {
|
||
|
endpoint: '<',
|
||
|
setValidity: '<',
|
||
|
isAdmin: '<',
|
||
|
isDockerHubRegistry: '<',
|
||
|
isAuthenticated: '<',
|
||
|
},
|
||
|
controller,
|
||
|
transclude: {
|
||
|
rateLimitExceeded: '?porImageRegistryRateLimitExceeded',
|
||
|
},
|
||
|
templateUrl: './por-image-registry-rate-limits.html',
|
||
|
});
|