1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_dispatch/middleware/head.rb

18 lines
381 B
Ruby

module ActionDispatch
class Head
def initialize(app)
@app = app
end
def call(env)
if env["REQUEST_METHOD"] == "HEAD"
env["REQUEST_METHOD"] = "GET"
env["rack.methodoverride.original_method"] = "HEAD"
status, headers, body = @app.call(env)
[status, headers, []]
else
@app.call(env)
end
end
end
end