discourse/app/assets/javascripts/admin/addon/routes/admin-web-hooks-show-events.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
543 B
JavaScript
Raw Normal View History

import DiscourseRoute from "discourse/routes/discourse";
import { get } from "@ember/object";
export default DiscourseRoute.extend({
2016-06-16 01:49:57 +08:00
model(params) {
2019-11-02 01:57:22 +08:00
return this.store.findAll("web-hook-event", get(params, "web_hook_id"));
2016-06-16 01:49:57 +08:00
},
setupController(controller, model) {
controller.set("model", model);
2016-09-14 07:54:53 +08:00
controller.subscribe();
},
deactivate() {
this.controllerFor("adminWebHooks.showEvents").unsubscribe();
2016-06-16 01:49:57 +08:00
},
renderTemplate() {
this.render("admin/templates/web-hooks-show-events", { into: "adminApi" });
2016-06-16 01:49:57 +08:00
},
});