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:
parent
ea596a8701
commit
adf5184a5d
9 changed files with 241 additions and 21 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue