mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 05:03:42 +08:00
15 lines
314 B
Plaintext
15 lines
314 B
Plaintext
|
import EmailLog from 'admin/models/email-log';
|
||
|
|
||
|
export default Discourse.Route.extend({
|
||
|
|
||
|
model() {
|
||
|
return EmailLog.findAll({ status: this.get("status") });
|
||
|
},
|
||
|
|
||
|
setupController(controller, model) {
|
||
|
controller.set("model", model);
|
||
|
controller.set("filter", { status: this.get("status") });
|
||
|
}
|
||
|
|
||
|
});
|