mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 23:14:20 +08:00
f661fa609e
http://meta.discourse.org/t/is-it-better-for-discourse-to-use-javascript-or-coffeescript/3153
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
(function() {
|
|
|
|
Discourse.buildRoutes(function() {
|
|
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'
|
|
});
|
|
return this.route('old', {
|
|
path: '/old'
|
|
});
|
|
});
|
|
return this.resource('adminUsers', {
|
|
path: '/users'
|
|
}, function() {
|
|
this.resource('adminUser', {
|
|
path: '/:username'
|
|
});
|
|
return this.resource('adminUsersList', {
|
|
path: '/list'
|
|
}, function() {
|
|
this.route('active', {
|
|
path: '/active'
|
|
});
|
|
this.route('new', {
|
|
path: '/new'
|
|
});
|
|
return this.route('pending', {
|
|
path: '/pending'
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
}).call(this);
|