mirror of
https://github.com/kbparagua/paloma
synced 2023-03-27 23:21:17 -04:00
Merge pull request #15 from johnknott/master
#13 - Modified to hook module ::ActionController::Flash rather than ::ActionController::Redirect
This commit is contained in:
commit
a0c5b34e9d
1 changed files with 16 additions and 16 deletions
|
@ -1,16 +1,16 @@
|
|||
module Paloma
|
||||
|
||||
# TODO explain!
|
||||
module ::ActionController::Redirecting
|
||||
module ::ActionController::Flash
|
||||
alias_method :original_redirect_to, :redirect_to
|
||||
end
|
||||
|
||||
|
||||
|
||||
module ActionControllerExtension
|
||||
def redirect_js_hook options = {}, response_status = {}
|
||||
def redirect_js_hook options = {}, response_status_and_flash = {}
|
||||
add_to_callbacks @__paloma_callback__
|
||||
original_redirect_to options, response_status
|
||||
original_redirect_to options, response_status_and_flash
|
||||
end
|
||||
alias_method :redirect_to, :redirect_js_hook
|
||||
|
||||
|
|
Loading…
Reference in a new issue