there is a scope in User model but not used in staff_constraint

This commit is contained in:
nirnanaaa 2013-05-29 19:54:23 +02:00
parent acb2623b4b
commit 00c1c4691d

View file

@ -4,7 +4,7 @@ class StaffConstraint
def matches?(request)
return false unless request.session[:current_user_id].present?
User.where("admin = 't' or moderator = 't'").where(id: request.session[:current_user_id].to_i).exists?
User.staff.where(id: request.session[:current_user_id].to_i).exists?
end
end