1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 00:09:40 +02:00

feat(ui): add events view (#86)

* feat(ui): add events view

* chore(grunt): use minified angular script
This commit is contained in:
Anthony Lapenna 2016-07-27 17:05:16 +12:00 committed by GitHub
parent ea596a8701
commit adf5184a5d
9 changed files with 241 additions and 21 deletions

View file

@ -12,6 +12,7 @@ angular.module('uifordocker', [
'containers',
'createContainer',
'docker',
'events',
'images',
'image',
'containerLogs',
@ -86,6 +87,11 @@ angular.module('uifordocker', [
templateUrl: 'app/components/docker/docker.html',
controller: 'DockerController'
})
.state('events', {
url: '/events/',
templateUrl: 'app/components/events/events.html',
controller: 'EventsController'
})
.state('images', {
url: '/images/',
templateUrl: 'app/components/images/images.html',