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