mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:09:35 +08:00
e5311ab645
* DEV: Discourse.Route -> DiscourseRoute with import * ran prettier on all routes * prettiered one more file
24 lines
529 B
JavaScript
24 lines
529 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default DiscourseRoute.extend({
|
|
model(params) {
|
|
return this.store.findAll(
|
|
"web-hook-event",
|
|
Ember.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" });
|
|
}
|
|
});
|