13 lines
372 B
Ruby
13 lines
372 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SafeParamsHelper
|
|
# Rails 5.0 requires to permit `params` if they're used in url helpers.
|
|
# Use this helper when generating links with `params.merge(...)`
|
|
def safe_params
|
|
if params.respond_to?(:permit!)
|
|
params.except(*ActionDispatch::Routing::RouteSet::RESERVED_OPTIONS).permit!
|
|
else
|
|
params
|
|
end
|
|
end
|
|
end
|