mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 19:23:39 +08:00
25 lines
560 B
JavaScript
25 lines
560 B
JavaScript
import { get } from "@ember/object";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default DiscourseRoute.extend({
|
|
model(params) {
|
|
return this.store.findAll(
|
|
"web-hook-event",
|
|
get(params, "web_hook_id")
|
|
);
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.set("model", model);
|
|
controller.subscribe();
|
|
},
|
|
|
|
deactivate() {
|
|
this.controllerFor("adminWebHooks.showEvents").unsubscribe();
|
|
},
|
|
|
|
renderTemplate() {
|
|
this.render("admin/templates/web-hooks-show-events", { into: "adminApi" });
|
|
}
|
|
});
|