summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/continue_params.rb
blob: 8b7355974dff53846166b48266329b44bae27a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module ContinueParams
  include InternalRedirect
  extend ActiveSupport::Concern

  def continue_params
    continue_params = params[:continue]
    return nil unless continue_params

    continue_params = continue_params.permit(:to, :notice, :notice_now)
    continue_params[:to] = safe_redirect_path(continue_params[:to])

    continue_params
  end
end