mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 18:23:46 +08:00
7 lines
163 B
JavaScript
Vendored
7 lines
163 B
JavaScript
Vendored
import Route from "@ember/routing/route";
|
|
|
|
export default class AdminApiKeysIndexRoute extends Route {
|
|
model() {
|
|
return this.store.findAll("api-key");
|
|
}
|
|
}
|