1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Added logic to delegate tournament access

This commit is contained in:
2016-01-06 18:38:02 +00:00
parent eb9037b078
commit f46029efaf
46 changed files with 417 additions and 121 deletions

View File

@@ -30,7 +30,7 @@ class Mat < ActiveRecord::Base
end
def unfinishedMatches
matches.select{|m| m.finished == nil}.sort_by{|m| m.bout_number}
matches.select{|m| m.finished != 1}.sort_by{|m| m.bout_number}
end
end