mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
/**
|
|
Builds the routes for the admin section
|
|
|
|
@method buildRoutes
|
|
@for Discourse.AdminRoute
|
|
**/
|
|
Discourse.Route.buildRoutes(function() {
|
|
this.resource('admin', { path: '/admin' }, function() {
|
|
this.route('dashboard', { path: '/' });
|
|
this.route('site_settings', { path: '/site_settings' });
|
|
|
|
|
|
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' });
|
|
this.route('api', {path: '/api'});
|
|
|
|
this.resource('adminReports', { path: '/reports/:type' });
|
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
|
this.route('active', { path: '/active' });
|
|
this.route('old', { path: '/old' });
|
|
});
|
|
|
|
this.resource('adminLogs', { path: '/logs' }, function() {
|
|
this.route('blockedEmails', { path: '/blocked_emails' });
|
|
this.route('staffActionLogs', { path: '/staff_action_logs' });
|
|
});
|
|
|
|
this.route('groups', {path: '/groups'});
|
|
|
|
this.resource('adminUsers', { path: '/users' }, function() {
|
|
this.resource('adminUser', { path: '/:username' });
|
|
this.resource('adminUsersList', { path: '/list' }, function() {
|
|
_.each(['active', 'new', 'pending', 'admins', 'moderators', 'blocked', 'banned',
|
|
'newuser', 'basic', 'regular', 'leaders', 'elders'], function(x) {
|
|
this.route(x, { path: '/' + x });
|
|
}, this);
|
|
});
|
|
});
|
|
|
|
});
|
|
});
|
|
|
|
|