mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 16:41:21 +08:00
This change converts the admin webhooks UI to the new UI guidelines and modernizes the JS.
7 lines
165 B
JavaScript
Vendored
7 lines
165 B
JavaScript
Vendored
import Route from "@ember/routing/route";
|
|
|
|
export default class AdminWebHooksIndexRoute extends Route {
|
|
model() {
|
|
return this.store.findAll("web-hook");
|
|
}
|
|
}
|