mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-31 11:35:45 +00:00
11 lines
284 B
Ruby
11 lines
284 B
Ruby
class ApiController < ApplicationController
|
|
|
|
def tournaments
|
|
@tournaments = Tournament.all
|
|
end
|
|
|
|
def tournament
|
|
@tournament = Tournament.where(:id => params[:tournament]).includes(:schools,:weights,:mats,:matches,:user,:wrestlers).first
|
|
end
|
|
end
|