2015-11-12 16:08:19 -05:00
|
|
|
export default Ember.Controller.extend({
|
|
|
|
emailTemplates: null,
|
2019-05-28 06:15:12 -04:00
|
|
|
sortedTemplates: Ember.computed.sort("emailTemplates", "titleSorting"),
|
2015-11-12 16:08:19 -05:00
|
|
|
|
2019-05-28 06:15:12 -04:00
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
|
|
|
|
this.titleSorting = ["title"];
|
|
|
|
}
|
2015-11-12 16:08:19 -05:00
|
|
|
});
|