mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:03:00 +08:00
28 lines
842 B
JavaScript
28 lines
842 B
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
import IncomingEmail from 'admin/models/incoming-email';
|
|
import computed from 'ember-addons/ember-computed-decorators';
|
|
import { longDate } from 'discourse/lib/formatter';
|
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
|
|
|
export default Ember.Controller.extend(ModalFunctionality, {
|
|
|
|
@computed("model.date")
|
|
date(d) {
|
|
return longDate(d);
|
|
},
|
|
|
|
load(id) {
|
|
return IncomingEmail.find(id).then(result => this.set("model", result));
|
|
},
|
|
|
|
loadFromBounced(id) {
|
|
return IncomingEmail.findByBounced(id)
|
|
.then(result => this.set("model", result))
|
|
.catch(error => {
|
|
this.send("closeModal");
|
|
popupAjaxError(error);
|
|
});
|
|
}
|
|
|
|
});
|