diff options
Diffstat (limited to 'app/controllers/pokedex_controller.rb')
| -rw-r--r-- | app/controllers/pokedex_controller.rb | 10 |
1 files changed, 10 insertions, 0 deletions
| diff --git a/app/controllers/pokedex_controller.rb b/app/controllers/pokedex_controller.rb new file mode 100644 index 0000000..81c00e8 --- /dev/null +++ b/app/controllers/pokedex_controller.rb | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | class PokedexController < ApplicationController | ||
| 2 | def index | ||
| 3 | @species = Species. | ||
| 4 | order(id: :asc). | ||
| 5 | includes(:pokedex_entries). | ||
| 6 | order("pokedex_entries.trainer_id ASC") | ||
| 7 | |||
| 8 | @trainers = Trainer.order(id: :asc) | ||
| 9 | end | ||
| 10 | end | ||
