mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:35:48 +08:00
22 lines
662 B
JavaScript
22 lines
662 B
JavaScript
import IncomingEmail from 'admin/models/incoming-email';
|
|
|
|
export default Ember.Controller.extend({
|
|
loading: false,
|
|
|
|
actions: {
|
|
|
|
loadMore() {
|
|
if (this.get("loading") || this.get("model.allLoaded")) { return; }
|
|
this.set('loading', true);
|
|
|
|
IncomingEmail.findAll(this.get("filter"), this.get("model.length"))
|
|
.then(incoming => {
|
|
if (incoming.length < 50) { this.get("model").set("allLoaded", true); }
|
|
this.get("model").addObjects(incoming);
|
|
}).finally(() => {
|
|
this.set('loading', false);
|
|
});
|
|
}
|
|
}
|
|
});
|