Shell for UI pages, some placeholder dashboard stats

This commit is contained in:
Jamie Curnow
2018-06-26 11:56:10 +10:00
parent 493bb77169
commit c69b174771
23 changed files with 328 additions and 24 deletions

View File

@ -5,10 +5,15 @@ const Controller = require('./controller');
module.exports = Mn.AppRouter.extend({
appRoutes: {
users: 'showUsers',
profile: 'showProfile',
logout: 'logout',
'*default': 'showDashboard'
users: 'showUsers',
profile: 'showProfile',
logout: 'logout',
'nginx/proxy': 'showNginxProxy',
'nginx/redirection': 'showNginxRedirection',
'nginx/404': 'showNginx404',
'nginx/stream': 'showNginxStream',
'nginx/access': 'showNginxAccess',
'*default': 'showDashboard'
},
initialize: function () {