2014-10-16 14:08:02 +08:00
|
|
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
|
2014-11-20 03:37:43 +08:00
|
|
|
// This controller handles displaying of raw email
|
2014-10-16 14:08:02 +08:00
|
|
|
export default ObjectController.extend(ModalFunctionality, {
|
2014-10-24 23:49:38 +08:00
|
|
|
rawEmail: "",
|
2014-10-16 14:08:02 +08:00
|
|
|
|
2014-10-18 03:18:29 +08:00
|
|
|
loadRawEmail: function(postId) {
|
2014-10-16 14:08:02 +08:00
|
|
|
var self = this;
|
2014-10-24 23:49:38 +08:00
|
|
|
Discourse.Post.loadRawEmail(postId).then(function (result) {
|
|
|
|
self.set("rawEmail", result);
|
2014-10-16 14:08:02 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|