mirror of
https://github.com/discourse/discourse.git
synced 2025-02-09 21:04:48 +00:00
10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
Discourse.AdminEmailIndexRoute = Discourse.Route.extend({
|
|
model: function() {
|
|
return Discourse.EmailSettings.find();
|
|
},
|
|
|
|
renderTemplate: function() {
|
|
this.render('admin/templates/email_index', { into: 'adminEmail' });
|
|
}
|
|
});
|