mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 21:26:02 +08:00
there is a scope in User model but not used in staff_constraint
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user