summaryrefslogtreecommitdiff
path: root/app/models/match.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/match.rb')
-rw-r--r--app/models/match.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/models/match.rb b/app/models/match.rb
index d4c0ce5..fa15980 100644
--- a/app/models/match.rb
+++ b/app/models/match.rb
@@ -12,6 +12,7 @@ class Match < ActiveRecord::Base
ok = true
tournament_stage.scoring_method.stats_needed.each do |stat|
ok &= statistics.where(match: self, name: stat).nil?
+ end
ok
end
@@ -19,6 +20,16 @@ class Match < ActiveRecord::Base
winner.players.include? player
end
+ def users
+ ret = []
+ self.teams.each{|t| ret.concat(t.users)}
+ return ret
+ end
+
+ def stats_from(sampling_class)
+ # TODO
+ end
+
def handle_sampling(params)
# TODO
end