mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
10 lines
256 B
Plaintext
10 lines
256 B
Plaintext
|
export default Discourse.Route.extend({
|
||
|
renderTemplate: function() {
|
||
|
this.render('admin/templates/logs/screened_urls', {into: 'adminLogs'});
|
||
|
},
|
||
|
|
||
|
setupController: function() {
|
||
|
return this.controllerFor('adminLogsScreenedUrls').show();
|
||
|
}
|
||
|
});
|