Add staff? to user model.

This commit is contained in:
simplefl 2015-04-11 15:37:47 +02:00
parent 17e421235b
commit 1b88c9f149

View file

@ -197,6 +197,10 @@ class User < ActiveRecord::Base
groups.exists? :id => Group::REFEREES
end
def staff?
groups.exists? :id => Group::STAFF
end
def caster?
groups.exists? :id => Group::CASTERS
end