mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 13:06:56 +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)
|
def matches?(request)
|
||||||
return false unless request.session[:current_user_id].present?
|
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
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user