diff options
author | tkimia <tkimia@purdue.edu> | 2014-04-03 16:24:36 -0400 |
---|---|---|
committer | tkimia <tkimia@purdue.edu> | 2014-04-03 16:24:36 -0400 |
commit | b62c07359a9cbc7bad93c375c50d266a40dfe539 (patch) | |
tree | 84977506985a747aac81f698ced6337300938588 /app | |
parent | 9f19d0e16d7920e07255c0fbe596c518d1aa415f (diff) |
Users can't join twice
Diffstat (limited to 'app')
-rw-r--r-- | app/models/tournament.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/tournament.rb b/app/models/tournament.rb index 87b516e..4483535 100644 --- a/app/models/tournament.rb +++ b/app/models/tournament.rb @@ -9,7 +9,7 @@ class Tournament < ActiveRecord::Base end def joinable_by?(user) - return ((not user.nil?) and user.in_group?(:player) and open?) + return ((not user.nil?) and user.in_group?(:player) and open? and !players.include?(user)) end def join(user) |