2015-11-20 20:27:06 -05:00
|
|
|
export default Discourse.Route.extend({
|
|
|
|
renderTemplate: function() {
|
2016-11-09 14:47:58 -05:00
|
|
|
this.render('admin/templates/logs/screened-emails', {into: 'adminLogs'});
|
2015-11-20 20:27:06 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
setupController: function() {
|
|
|
|
return this.controllerFor('adminLogsScreenedEmails').show();
|
|
|
|
}
|
|
|
|
});
|