pinrails/app/controllers/pages_controller.rb

9 lines
185 B
Ruby

class PagesController < ApplicationController
def index
@players = Player.all
group_size = Player.count
@groups = Player.order(Arel.sql("RANDOM()")).each_slice
end
end