2013-02-20 13:15:50 -05:00
|
|
|
(function() {
|
|
|
|
|
2013-02-21 14:09:28 -05:00
|
|
|
/**
|
|
|
|
Declare all the routes used in the admin section.
|
|
|
|
**/
|
2013-02-20 13:15:50 -05:00
|
|
|
Discourse.buildRoutes(function() {
|
2013-02-21 14:09:28 -05:00
|
|
|
return this.resource('admin', { path: '/admin' }, function() {
|
|
|
|
|
|
|
|
this.route('dashboard', { path: '/' });
|
|
|
|
this.route('site_settings', { path: '/site_settings' });
|
|
|
|
this.route('email_logs', { path: '/email_logs' });
|
|
|
|
this.route('customize', { path: '/customize' });
|
|
|
|
|
|
|
|
this.resource('adminFlags', { path: '/flags' }, function() {
|
|
|
|
this.route('active', { path: '/active' });
|
|
|
|
this.route('old', { path: '/old' });
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
2013-02-21 14:09:28 -05:00
|
|
|
|
|
|
|
this.resource('adminUsers', { path: '/users' }, function() {
|
|
|
|
this.resource('adminUser', { path: '/:username' });
|
|
|
|
this.resource('adminUsersList', { path: '/list' }, function() {
|
|
|
|
this.route('active', { path: '/active' });
|
|
|
|
this.route('new', { path: '/new' });
|
|
|
|
this.route('pending', { path: '/pending' });
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
|
|
|
});
|
2013-02-21 14:09:28 -05:00
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}).call(this);
|