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