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: '/' });
|
2013-11-14 03:02:47 +08:00
|
|
|
this.resource('adminSiteSettings', { path: '/site_settings' }, function() {
|
|
|
|
this.resource('adminSiteSettingsCategory', { path: 'category/:category_id'} );
|
|
|
|
});
|
2013-04-05 00:59:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
this.resource('adminSiteContents', { path: '/site_contents' }, function() {
|
|
|
|
this.resource('adminSiteContentEdit', {path: '/:content_type'});
|
|
|
|
});
|
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
this.resource('adminEmail', { path: '/email'}, function() {
|
|
|
|
this.route('logs', { path: '/logs' });
|
|
|
|
this.route('previewDigest', { path: '/preview-digest' });
|
|
|
|
});
|
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
this.route('customize', { path: '/customize' });
|
2013-03-26 09:04:28 +08:00
|
|
|
this.route('api', {path: '/api'});
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-02-28 11:39:42 +08:00
|
|
|
this.resource('adminReports', { path: '/reports/:type' });
|
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
2013-08-19 19:14:26 +08:00
|
|
|
this.route('index', { path: '/' });
|
2013-02-23 04:41:12 +08:00
|
|
|
this.route('active', { path: '/active' });
|
|
|
|
this.route('old', { path: '/old' });
|
|
|
|
});
|
2013-02-22 03:09:28 +08:00
|
|
|
|
2013-08-02 09:30:13 +08:00
|
|
|
this.resource('adminLogs', { path: '/logs' }, function() {
|
2013-08-08 04:04:12 +08:00
|
|
|
this.route('staffActionLogs', { path: '/staff_action_logs' });
|
2013-08-15 22:48:30 +08:00
|
|
|
this.route('screenedEmails', { path: '/screened_emails' });
|
2013-10-22 02:49:51 +08:00
|
|
|
this.route('screenedIpAddresses', { path: '/screened_ip_addresses' });
|
2013-08-15 22:48:30 +08:00
|
|
|
this.route('screenedUrls', { path: '/screened_urls' });
|
2013-08-02 09:30:13 +08:00
|
|
|
});
|
|
|
|
|
2013-04-17 15:08:21 +08:00
|
|
|
this.route('groups', {path: '/groups'});
|
|
|
|
|
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() {
|
2013-11-08 02:53:32 +08:00
|
|
|
_.each(['active', 'new', 'pending', 'admins', 'moderators', 'blocked', 'suspended',
|
2013-07-09 00:21:08 +08:00
|
|
|
'newuser', 'basic', 'regular', 'leaders', 'elders'], function(x) {
|
|
|
|
this.route(x, { path: '/' + x });
|
|
|
|
}, this);
|
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
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
|