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