Method: ActionDispatch::Http::URL.propagated_params

Defined in:
lib/incline/extensions/param_propagation.rb

.propagated_paramsObject

Enables automatic parameter propagation.

This will only propagate within the current thread. Child threads will not propagate. This will not affect other requests in the current session.

ActionDispatch::Http::URL.propagated_params << :some_param


12
13
14
# File 'lib/incline/extensions/param_propagation.rb', line 12

def self.propagated_params
  @propagated_params ||= []
end