mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 16:29:25 +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
|