2013-02-26 14:54:43 -05:00
|
|
|
Discourse.Route.buildRoutes(function() {
|
2014-02-12 23:34:57 -05:00
|
|
|
this.resource('admin', function() {
|
2013-02-22 15:41:12 -05:00
|
|
|
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'} );
|
|
|
|
});
|
2013-04-04 12:59:44 -04:00
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
this.resource('adminEmail', { path: '/email'}, function() {
|
2014-02-14 19:17:13 -05:00
|
|
|
this.route('all');
|
2014-02-14 18:50:08 -05:00
|
|
|
this.route('sent');
|
2014-02-14 13:06:21 -05:00
|
|
|
this.route('skipped');
|
2013-06-03 16:12:24 -04:00
|
|
|
this.route('previewDigest', { path: '/preview-digest' });
|
|
|
|
});
|
|
|
|
|
2014-04-16 09:49:06 -04:00
|
|
|
this.resource('adminCustomize', { path: '/customize' } ,function() {
|
|
|
|
this.route('colors');
|
|
|
|
this.route('css_html');
|
2014-09-24 14:45:35 -04:00
|
|
|
this.resource('adminSiteText', { path: '/site_text' }, function() {
|
|
|
|
this.route('edit', {path: '/:text_type'});
|
2014-09-23 17:12:01 -04:00
|
|
|
});
|
2014-09-25 11:32:08 -04:00
|
|
|
this.resource('adminUserFields', { path: '/user_fields' }, function() {
|
|
|
|
});
|
2014-04-16 09:49:06 -04:00
|
|
|
});
|
2014-02-12 23:34:57 -05:00
|
|
|
this.route('api');
|
|
|
|
|
|
|
|
this.resource('admin.backups', { path: '/backups' }, function() {
|
|
|
|
this.route('logs');
|
|
|
|
});
|
2013-02-21 14:09:28 -05:00
|
|
|
|
2013-02-27 22:39:42 -05:00
|
|
|
this.resource('adminReports', { path: '/reports/:type' });
|
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
2014-11-11 15:48:13 -05:00
|
|
|
this.route('list', { path: '/:filter' });
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|
2013-02-21 14:09:28 -05:00
|
|
|
|
2013-08-01 21:30:13 -04:00
|
|
|
this.resource('adminLogs', { path: '/logs' }, function() {
|
2013-08-07 16:04:12 -04:00
|
|
|
this.route('staffActionLogs', { path: '/staff_action_logs' });
|
2013-08-15 10:48:30 -04:00
|
|
|
this.route('screenedEmails', { path: '/screened_emails' });
|
2013-10-21 14:49:51 -04:00
|
|
|
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
|
|
|
});
|
|
|
|
|
2014-04-23 13:25:02 -04:00
|
|
|
this.resource('adminGroups', { path: '/groups'}, function() {
|
|
|
|
this.resource('adminGroup', { path: '/:name' });
|
|
|
|
});
|
2013-04-17 03:08:21 -04:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
this.resource('adminUsers', { path: '/users' }, function() {
|
2014-01-22 17:09:56 -05:00
|
|
|
this.resource('adminUser', { path: '/:username' }, function() {
|
2014-03-19 10:27:21 -04:00
|
|
|
this.route('badges');
|
2014-09-24 20:19:26 -04:00
|
|
|
this.route('tl3Requirements', { path: '/tl3_requirements' });
|
2014-01-22 17:09:56 -05:00
|
|
|
});
|
2013-02-22 15:41:12 -05:00
|
|
|
this.resource('adminUsersList', { path: '/list' }, function() {
|
2013-11-07 13:53:32 -05:00
|
|
|
_.each(['active', 'new', 'pending', 'admins', 'moderators', 'blocked', 'suspended',
|
2014-04-15 12:25:09 -04:00
|
|
|
'newuser', 'basicuser', 'regular', 'leaders', 'elders'], function(x) {
|
2013-07-08 12:21:08 -04:00
|
|
|
this.route(x, { path: '/' + x });
|
|
|
|
}, this);
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
2013-02-22 15:41:12 -05:00
|
|
|
|
2014-10-17 14:27:40 -04:00
|
|
|
this.resource('adminBadges', { path: '/badges' }, function() {
|
|
|
|
this.route('show', { path: '/:badge_id' });
|
|
|
|
});
|
2014-03-05 07:52:20 -05:00
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|