2015-08-11 12:27:07 -04:00
|
|
|
export default Ember.Controller.extend({
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
actions: {
|
2015-08-16 05:51:31 -04:00
|
|
|
refresh() {
|
|
|
|
const model = this.get('model');
|
2013-09-16 14:08:55 -04:00
|
|
|
|
2015-08-16 06:01:04 -04:00
|
|
|
this.set('loading', true);
|
2015-08-16 05:51:31 -04:00
|
|
|
Discourse.EmailPreview.findDigest(this.get('lastSeen')).then(email => {
|
2013-09-16 14:08:55 -04:00
|
|
|
model.setProperties(email.getProperties('html_content', 'text_content'));
|
2015-08-16 05:51:31 -04:00
|
|
|
this.set('loading', false);
|
2013-09-16 14:08:55 -04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-08-16 05:51:31 -04:00
|
|
|
toggleShowHtml() {
|
2013-09-16 14:08:55 -04:00
|
|
|
this.toggleProperty('showHtml');
|
|
|
|
}
|
2013-06-03 16:12:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|