1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-22 10:33:48 -05:00

12 lines
274 B
Ruby
Raw Normal View History

module Rack
class Request
def trusted_proxy?(ip)
2017-01-22 23:07:31 +01:00
if Rails.application.config.action_dispatch.trusted_proxies.nil?
super
else
Rails.application.config.action_dispatch.trusted_proxies.any? { |proxy| proxy === ip }
end
end
end
end