mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
export default Discourse.Route.extend({
|
|
renderTemplate() {
|
|
this.render('admin/templates/logs/screened-ip-addresses', {into: 'adminLogs'});
|
|
},
|
|
|
|
setupController() {
|
|
return this.controllerFor('adminLogsScreenedIpAddresses').show();
|
|
}
|
|
});
|