mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
11 lines
267 B
Ruby
11 lines
267 B
Ruby
require_dependency 'current_user'
|
|
|
|
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?
|
|
end
|
|
|
|
end
|