2019-10-23 12:39:32 -04:00
|
|
|
import Route from "@ember/routing/route";
|
2015-11-20 20:27:06 -05:00
|
|
|
|
2019-10-23 12:39:32 -04:00
|
|
|
export default Route.extend({
|
2019-11-05 09:10:23 -05:00
|
|
|
actions: {
|
|
|
|
show(apiKey) {
|
|
|
|
this.transitionTo("adminApiKeys.show", apiKey.id);
|
|
|
|
},
|
|
|
|
|
|
|
|
new() {
|
|
|
|
this.transitionTo("adminApiKeys.new");
|
|
|
|
}
|
2015-08-06 12:14:59 -04:00
|
|
|
}
|
|
|
|
});
|