discourse/app/assets/javascripts/admin/addon/routes/admin-web-hooks-index.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
165 B
JavaScript

import Route from "@ember/routing/route";
export default class AdminWebHooksIndexRoute extends Route {
model() {
return this.store.findAll("web-hook");
}
}