mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
export default Discourse.Route.extend({
|
|
renderTemplate: function() {
|
|
this.render("admin/templates/logs/screened-urls", { into: "adminLogs" });
|
|
},
|
|
|
|
setupController: function() {
|
|
return this.controllerFor("adminLogsScreenedUrls").show();
|
|
}
|
|
});
|