Merge branch 'master' into 'master'

overide ActionDispatch::Request.original_url method to solve the problem of https review



See merge request !5
This commit is contained in:
wmcheng 2019-11-19 23:39:00 +08:00
commit ccd06edd25
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
module ActionDispatch
class Request
def original_url
original_fullpath
end
end
end