mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
195119b77c
We were trying to observe a non-ember object which is undefined behavior and was leaking to odd bugs. This replaces the `filter` object with an Ember Object and things seem to work.
14 lines
365 B
JavaScript
14 lines
365 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
import IncomingEmail from "admin/models/incoming-email";
|
|
|
|
export default DiscourseRoute.extend({
|
|
model() {
|
|
return IncomingEmail.findAll({ status: this.status });
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.set("model", model);
|
|
controller.set("filter.status", this.status);
|
|
},
|
|
});
|