mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
63 lines
2.2 KiB
JavaScript
63 lines
2.2 KiB
JavaScript
Discourse.Route.buildRoutes(function() {
|
|
this.resource('admin', function() {
|
|
this.route('dashboard', { path: '/' });
|
|
this.resource('adminSiteSettings', { path: '/site_settings' }, function() {
|
|
this.resource('adminSiteSettingsCategory', { path: 'category/:category_id'} );
|
|
});
|
|
|
|
this.resource('adminEmail', { path: '/email'}, function() {
|
|
this.route('all');
|
|
this.route('sent');
|
|
this.route('skipped');
|
|
this.route('previewDigest', { path: '/preview-digest' });
|
|
});
|
|
|
|
this.resource('adminCustomize', { path: '/customize' } ,function() {
|
|
this.route('colors');
|
|
this.route('css_html');
|
|
this.resource('adminSiteContents', { path: '/site_contents' }, function() {
|
|
this.route('edit', {path: '/:content_type'});
|
|
});
|
|
});
|
|
this.route('api');
|
|
|
|
this.resource('admin.backups', { path: '/backups' }, function() {
|
|
this.route('logs');
|
|
});
|
|
|
|
this.resource('adminReports', { path: '/reports/:type' });
|
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
|
this.route('active');
|
|
this.route('old');
|
|
});
|
|
|
|
this.resource('adminLogs', { path: '/logs' }, function() {
|
|
this.route('staffActionLogs', { path: '/staff_action_logs' });
|
|
this.route('screenedEmails', { path: '/screened_emails' });
|
|
this.route('screenedIpAddresses', { path: '/screened_ip_addresses' });
|
|
this.route('screenedUrls', { path: '/screened_urls' });
|
|
});
|
|
|
|
this.resource('adminGroups', { path: '/groups'}, function() {
|
|
this.resource('adminGroup', { path: '/:name' });
|
|
});
|
|
|
|
this.resource('adminUsers', { path: '/users' }, function() {
|
|
this.resource('adminUser', { path: '/:username' }, function() {
|
|
this.route('badges');
|
|
this.route('leaderRequirements', { path: '/leader_requirements' });
|
|
});
|
|
this.resource('adminUsersList', { path: '/list' }, function() {
|
|
_.each(['active', 'new', 'pending', 'admins', 'moderators', 'blocked', 'suspended',
|
|
'newuser', 'basicuser', 'regular', 'leaders', 'elders'], function(x) {
|
|
this.route(x, { path: '/' + x });
|
|
}, this);
|
|
});
|
|
});
|
|
|
|
this.route('badges');
|
|
|
|
});
|
|
});
|