2013-02-27 03:54:43 +08:00
|
|
|
Discourse.Route.buildRoutes(function() {
|
2014-02-13 12:34:57 +08:00
|
|
|
this.resource('admin', function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
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
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
this.resource('adminEmail', { path: '/email'}, function() {
|
2014-02-15 08:17:13 +08:00
|
|
|
this.route('all');
|
2014-02-15 07:50:08 +08:00
|
|
|
this.route('sent');
|
2014-02-15 02:06:21 +08:00
|
|
|
this.route('skipped');
|
2013-06-04 04:12:24 +08:00
|
|
|
this.route('previewDigest', { path: '/preview-digest' });
|
|
|
|
});
|
|
|
|
|
2014-04-16 21:49:06 +08:00
|
|
|
this.resource('adminCustomize', { path: '/customize' } ,function() {
|
|
|
|
this.route('colors');
|
|
|
|
this.route('css_html');
|
2014-09-24 05:12:01 +08:00
|
|
|
this.resource('adminSiteContents', { path: '/site_contents' }, function() {
|
|
|
|
this.route('edit', {path: '/:content_type'});
|
|
|
|
});
|
2014-04-16 21:49:06 +08:00
|
|
|
});
|
2014-02-13 12:34:57 +08:00
|
|
|
this.route('api');
|
|
|
|
|
|
|
|
this.resource('admin.backups', { path: '/backups' }, function() {
|
|
|
|
this.route('logs');
|
|
|
|
});
|
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() {
|
2014-02-13 12:34:57 +08:00
|
|
|
this.route('active');
|
|
|
|
this.route('old');
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
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
|
|
|
});
|
|
|
|
|
2014-04-24 01:25:02 +08:00
|
|
|
this.resource('adminGroups', { path: '/groups'}, function() {
|
|
|
|
this.resource('adminGroup', { path: '/:name' });
|
|
|
|
});
|
2013-04-17 15:08:21 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
this.resource('adminUsers', { path: '/users' }, function() {
|
2014-01-23 06:09:56 +08:00
|
|
|
this.resource('adminUser', { path: '/:username' }, function() {
|
2014-03-19 22:27:21 +08:00
|
|
|
this.route('badges');
|
2014-01-23 06:09:56 +08:00
|
|
|
this.route('leaderRequirements', { path: '/leader_requirements' });
|
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
this.resource('adminUsersList', { path: '/list' }, function() {
|
2013-11-08 02:53:32 +08:00
|
|
|
_.each(['active', 'new', 'pending', 'admins', 'moderators', 'blocked', 'suspended',
|
2014-04-16 00:25:09 +08:00
|
|
|
'newuser', 'basicuser', 'regular', 'leaders', 'elders'], function(x) {
|
2013-07-09 00:21:08 +08:00
|
|
|
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
|
|
|
|
2014-03-05 20:52:20 +08:00
|
|
|
this.route('badges');
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|