about summary refs log tree commit diff stats
path: root/app/controllers/pokedex_controller.rb
blob: 81c00e8c108f5177d0a8c1d05b9bf1541a0c8de9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class PokedexController < ApplicationController
  def index
    @species = Species.
      order(id: :asc).
      includes(:pokedex_entries).
      order("pokedex_entries.trainer_id ASC")

    @trainers = Trainer.order(id: :asc)
  end
end