about summary refs log blame commit diff
path: root/app/controllers/pages_controller.rb
blob: 88016545f767eceb9b907960855c214fbea514f0 (plain) (tree)
1
2
3
4
5
6
7
8

                                             



                                                           

     
class PagesController < ApplicationController
  def index
    @players = Player.all

    group_size = Player.count
    @groups = Player.order(Arel.sql("RANDOM()")).each_slice
  end
end