mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 21:08:36 +08:00
10 lines
245 B
Ruby
10 lines
245 B
Ruby
require_dependency 'current_user'
|
|
|
|
class AdminConstraint
|
|
|
|
def matches?(request)
|
|
return false unless request.session[:current_user_id].present?
|
|
User.where(id: request.session[:current_user_id].to_i).where(admin: true).exists?
|
|
end
|
|
|
|
end |