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