discourse/app/assets/javascripts/admin/routes/admin_routes.js

60 lines
2.0 KiB
JavaScript
Raw Normal View History

/**
Builds the routes for the admin section
@method buildRoutes
@for Discourse.AdminRoute
**/
2013-02-26 14:54:43 -05:00
Discourse.Route.buildRoutes(function() {
this.resource('admin', { path: '/admin' }, function() {
this.route('dashboard', { path: '/' });
2013-11-13 14:02:47 -05:00
this.resource('adminSiteSettings', { path: '/site_settings' }, function() {
this.resource('adminSiteSettingsCategory', { path: 'category/:category_id'} );
});
this.resource('adminSiteContents', { path: '/site_contents' }, function() {
this.resource('adminSiteContentEdit', {path: '/:content_type'});
});
this.resource('adminEmail', { path: '/email'}, function() {
this.route('logs', { path: '/logs' });
this.route('previewDigest', { path: '/preview-digest' });
});
this.route('customize', { path: '/customize' });
2013-03-25 21:04:28 -04:00
this.route('api', {path: '/api'});
this.resource('adminReports', { path: '/reports/:type' });
this.resource('adminFlags', { path: '/flags' }, function() {
this.route('index', { path: '/' });
this.route('active', { path: '/active' });
this.route('old', { path: '/old' });
});
2013-08-01 21:30:13 -04:00
this.resource('adminLogs', { path: '/logs' }, function() {
this.route('staffActionLogs', { path: '/staff_action_logs' });
2013-08-15 10:48:30 -04:00
this.route('screenedEmails', { path: '/screened_emails' });
this.route('screenedIpAddresses', { path: '/screened_ip_addresses' });
2013-08-15 10:48:30 -04:00
this.route('screenedUrls', { path: '/screened_urls' });
2013-08-01 21:30:13 -04:00
});
this.route('groups', {path: '/groups'});
this.resource('adminUsers', { path: '/users' }, function() {
this.resource('adminUser', { path: '/:username' }, function() {
this.route('leaderRequirements', { path: '/leader_requirements' });
});
this.resource('adminUsersList', { path: '/list' }, function() {
_.each(['active', 'new', 'pending', 'admins', 'moderators', 'blocked', 'suspended',
2013-07-08 12:21:08 -04:00
'newuser', 'basic', 'regular', 'leaders', 'elders'], function(x) {
this.route(x, { path: '/' + x });
}, this);
});
});
});
});