discourse/app/assets/javascripts/admin/addon/routes/admin-web-hooks-edit.js
Ted Johansson 5c0b7c4d70
Admin webhooks UI guidelines (#30764)
This change converts the admin webhooks UI to the new UI guidelines and modernizes the JS.
2025-01-16 10:22:18 +08:00

8 lines
211 B
JavaScript

import DiscourseRoute from "discourse/routes/discourse";
export default class AdminWebHooksEditRoute extends DiscourseRoute {
model(params) {
return this.store.find("web-hook", params.web_hook_id);
}
}