mirror of
https://github.com/discourse/discourse.git
synced 2025-03-05 02:44:25 +08:00
FIX: Exclude DELETE
methods from invalid request with payload.
Follow-up 105d560177e166a0491b3f0be04dd068178fb3d5 Our client side code is sending params as part of the request payload so that is going to be tricky to fix.
This commit is contained in:
parent
4342d08edd
commit
2a0af17a39
@ -297,7 +297,7 @@ module Middleware
|
||||
@app = app
|
||||
end
|
||||
|
||||
PAYLOAD_INVALID_REQUEST_METHODS = ["GET", "DELETE", "HEAD"]
|
||||
PAYLOAD_INVALID_REQUEST_METHODS = ["GET", "HEAD"]
|
||||
|
||||
def call(env)
|
||||
if PAYLOAD_INVALID_REQUEST_METHODS.include?(env[Rack::REQUEST_METHOD]) &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user