mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:03:13 +08:00
5c899c765b
This reverts commit c21457d6a7
.
10 lines
260 B
JavaScript
10 lines
260 B
JavaScript
export default Discourse.Route.extend({
|
|
renderTemplate: function() {
|
|
this.render('admin/templates/logs/screened_emails', {into: 'adminLogs'});
|
|
},
|
|
|
|
setupController: function() {
|
|
return this.controllerFor('adminLogsScreenedEmails').show();
|
|
}
|
|
});
|