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

This commit is contained in:
chiu 2019-11-19 22:22:37 +08:00
parent 56822ed38c
commit f64c421ef5
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