mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
import Route from "@ember/routing/route";
|
|
|
|
export default Route.extend({
|
|
actions: {
|
|
show(apiKey) {
|
|
this.transitionTo("adminApiKeys.show", apiKey.id);
|
|
},
|
|
|
|
new() {
|
|
this.transitionTo("adminApiKeys.new");
|
|
},
|
|
},
|
|
});
|