mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
27 lines
591 B
JavaScript
27 lines
591 B
JavaScript
import Route from "@ember/routing/route";
|
|
import { action } from "@ember/object";
|
|
|
|
export default Route.extend({
|
|
model() {
|
|
return this.store.findAll("email-template");
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.set("emailTemplates", model);
|
|
},
|
|
|
|
@action
|
|
didTransition() {
|
|
const editController = this.controllerFor(
|
|
"adminCustomizeEmailTemplates.edit"
|
|
);
|
|
|
|
if (!editController.emailTemplate) {
|
|
this.transitionTo(
|
|
"adminCustomizeEmailTemplates.edit",
|
|
this.controller.get("sortedTemplates.firstObject")
|
|
);
|
|
}
|
|
},
|
|
});
|