2013-02-22 15:41:12 -05:00
|
|
|
/**
|
|
|
|
Builds the routes for the admin section
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
@method buildRoutes
|
|
|
|
@for Discourse.AdminRoute
|
|
|
|
**/
|
2013-02-26 14:54:43 -05:00
|
|
|
Discourse.Route.buildRoutes(function() {
|
2013-02-22 15:41:12 -05:00
|
|
|
this.resource('admin', { path: '/admin' }, function() {
|
|
|
|
this.route('dashboard', { path: '/' });
|
|
|
|
this.route('site_settings', { path: '/site_settings' });
|
2013-04-04 12:59:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
this.resource('adminSiteContents', { path: '/site_contents' }, function() {
|
|
|
|
this.resource('adminSiteContentEdit', {path: '/:content_type'});
|
|
|
|
});
|
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
this.resource('adminEmail', { path: '/email'}, function() {
|
|
|
|
this.route('logs', { path: '/logs' });
|
|
|
|
this.route('previewDigest', { path: '/preview-digest' });
|
|
|
|
});
|
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
this.route('customize', { path: '/customize' });
|
2013-03-25 21:04:28 -04:00
|
|
|
this.route('api', {path: '/api'});
|
2013-02-21 14:09:28 -05:00
|
|
|
|
2013-02-27 22:39:42 -05:00
|
|
|
this.resource('adminReports', { path: '/reports/:type' });
|
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
|
|
|
this.route('active', { path: '/active' });
|
|
|
|
this.route('old', { path: '/old' });
|
|
|
|
});
|
2013-02-21 14:09:28 -05:00
|
|
|
|
2013-04-17 03:08:21 -04:00
|
|
|
this.route('groups', {path: '/groups'});
|
|
|
|
|
2013-02-22 15:41:12 -05: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-04-23 12:07:58 -04:00
|
|
|
this.route('admins', { path: '/admins' });
|
|
|
|
this.route('moderators', { path: '/moderators' });
|
2013-06-04 11:53:19 -04:00
|
|
|
this.route('blocked', { path: '/blocked' });
|
2013-04-23 10:29:18 -04:00
|
|
|
// Trust Levels:
|
|
|
|
this.route('newuser', { path: '/newuser' });
|
|
|
|
this.route('basic', { path: '/basic' });
|
|
|
|
this.route('regular', { path: '/regular' });
|
|
|
|
this.route('leaders', { path: '/leaders' });
|
|
|
|
this.route('elders', { path: '/elders' });
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
2013-02-22 15:41:12 -05:00
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
|