1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

feat(registry): inspect repository images (#3121)

* feat(registry): inspect repository images

* fix(registry): tag inspect column sorting
This commit is contained in:
xAt0mZ 2019-10-14 15:46:33 +02:00 committed by GitHub
parent 2445a5aed5
commit f67e866e7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 268 additions and 1 deletions

View file

@ -34,8 +34,20 @@ angular.module('portainer.extensions.registrymanagement', [])
}
}
};
var registryRepositoryTag = {
name: 'portainer.registries.registry.repository.tag',
url: '/:tag',
views: {
'content@': {
templateUrl: './views/repositories/tag/registryRepositoryTag.html',
controller: 'RegistryRepositoryTagController',
controllerAs: 'ctrl'
}
}
};
$stateRegistryProvider.register(registryConfiguration);
$stateRegistryProvider.register(registryRepositories);
$stateRegistryProvider.register(registryRepositoryTags);
$stateRegistryProvider.register(registryRepositoryTag);
}]);