2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FEATURE: Admin interface for editing email templates

This commit is contained in:
Robin Ward 2015-11-12 16:08:19 -05:00
parent e168c5fde3
commit f5b34d5f53
26 changed files with 240 additions and 60 deletions

View file

@ -0,0 +1,6 @@
export default Ember.Controller.extend({
titleSorting: ['title'],
emailTemplates: null,
sortedTemplates: Ember.computed.sort('emailTemplates', 'titleSorting')
});