2015-11-20 20:27:06 -05:00
|
|
|
export default Discourse.Route.extend({
|
|
|
|
renderTemplate: function() {
|
2018-06-15 11:03:24 -04:00
|
|
|
this.render("admin/templates/logs/screened-emails", { into: "adminLogs" });
|
2015-11-20 20:27:06 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
setupController: function() {
|
2018-06-15 11:03:24 -04:00
|
|
|
return this.controllerFor("adminLogsScreenedEmails").show();
|
2015-11-20 20:27:06 -05:00
|
|
|
}
|
|
|
|
});
|