diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-06 22:21:39 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-06 22:21:39 -0500 |
commit | e7562550fdaff859b0ead5a37e58c5f2b920ca80 (patch) | |
tree | b68d699bf397b7167a8713d789770b7ca59bdb16 /app/models/tournament.rb | |
parent | 4b672af0e7893a9db1c059c97b06afeafb9c742c (diff) | |
parent | 5f2247dd1e701a91fb0359bf7265bdadd5486a60 (diff) |
Merge branch 'master' of http://github.com/LukeShu/leaguer
Diffstat (limited to 'app/models/tournament.rb')
-rw-r--r-- | app/models/tournament.rb | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/app/models/tournament.rb b/app/models/tournament.rb index 26dec72..44b22f5 100644 --- a/app/models/tournament.rb +++ b/app/models/tournament.rb @@ -1,8 +1,8 @@ class Tournament < ActiveRecord::Base belongs_to :game has_many :matches - has_many :user_tournament_pairs - has_many :users, :through => :user_tournament_pairs + has_and_belongs_to_many :players, class_name: "User", association_foreign_key: "player_id", join_table: "players_tournaments" + has_and_belongs_to_many :hosts, class_name: "User", association_foreign_key: "host_id", join_table: "hosts_tournaments" def open? return true @@ -16,7 +16,19 @@ class Tournament < ActiveRecord::Base unless joinable_by?(user) return false end - pair = UserTournamentPair.new(tournament: self, user: user) - return pair.save + players<<user end + + def setup + num_teams = (self.users.count/self.players_per_team).floor + num_matches = num_teams - 1 + for i in 0..num_matches + self.matches.create(name: "Match #{i}") + end + #self.players.each_slice(num_teams) do |team_players| + # Team.new(users: team_players) + #end + end + + end |