mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
c21457d6a7
This reverts commit c0b277d273
.
29 lines
895 B
JavaScript
29 lines
895 B
JavaScript
/**
|
|
Handles routes related to viewing email logs.
|
|
|
|
@class AdminEmailSentRoute
|
|
@extends Discourse.Route
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.AdminEmailLogsRoute = Discourse.Route.extend({
|
|
|
|
model: function() {
|
|
return Discourse.EmailLog.findAll({ status: this.get("status") });
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
controller.set("model", model);
|
|
// resets the filters
|
|
controller.set("filter", { status: this.get("status") });
|
|
},
|
|
|
|
renderTemplate: function() {
|
|
this.render("admin/templates/email_" + this.get("status"), { into: "adminEmail" });
|
|
}
|
|
|
|
});
|
|
|
|
Discourse.AdminEmailAllRoute = Discourse.AdminEmailLogsRoute.extend({ status: "all" });
|
|
Discourse.AdminEmailSentRoute = Discourse.AdminEmailLogsRoute.extend({ status: "sent" });
|
|
Discourse.AdminEmailSkippedRoute = Discourse.AdminEmailLogsRoute.extend({ status: "skipped" });
|