2013-02-23 04:41:12 +08:00
|
|
|
/**
|
|
|
|
Builds the routes for the admin section
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
@method buildRoutes
|
|
|
|
@for Discourse.AdminRoute
|
|
|
|
**/
|
2013-02-27 03:54:43 +08:00
|
|
|
Discourse.Route.buildRoutes(function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
this.resource('admin', { path: '/admin' }, function() {
|
|
|
|
this.route('dashboard', { path: '/' });
|
|
|
|
this.route('site_settings', { path: '/site_settings' });
|
|
|
|
this.route('email_logs', { path: '/email_logs' });
|
|
|
|
this.route('customize', { path: '/customize' });
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
|
|
|
this.route('active', { path: '/active' });
|
|
|
|
this.route('old', { path: '/old' });
|
|
|
|
});
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
this.resource('adminUsers', { path: '/users' }, function() {
|
|
|
|
this.resource('adminUser', { path: '/:username' });
|
|
|
|
this.resource('adminUsersList', { path: '/list' }, function() {
|
|
|
|
this.route('active', { path: '/active' });
|
|
|
|
this.route('new', { path: '/new' });
|
|
|
|
this.route('pending', { path: '/pending' });
|
|
|
|
});
|
2013-02-21 02:15:50 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
|