mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
10 lines
No EOL
245 B
Ruby
10 lines
No EOL
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 |