mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-02 17:58:13 -05:00
18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const Mn = require('../lib/marionette');
|
||
|
const Controller = require('./controller');
|
||
|
|
||
|
module.exports = Mn.AppRouter.extend({
|
||
|
appRoutes: {
|
||
|
users: 'showUsers',
|
||
|
profile: 'showProfile',
|
||
|
logout: 'logout',
|
||
|
'*default': 'showDashboard'
|
||
|
},
|
||
|
|
||
|
initialize: function () {
|
||
|
this.controller = Controller;
|
||
|
}
|
||
|
});
|