Method: ActionDispatch::Flash::FlashHash#update
- Defined in:
- actionpack/lib/action_dispatch/middleware/flash.rb
#update(h) ⇒ Object Also known as: merge!
:nodoc:
173 174 175 176 177 |
# File 'actionpack/lib/action_dispatch/middleware/flash.rb', line 173 def update(h) # :nodoc: @discard.subtract stringify_array(h.keys) @flashes.update h.stringify_keys self end |