16 lines
245 B
Ruby
16 lines
245 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module RegistrationsTracking
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
helper_method :glm_tracking_params
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def glm_tracking_params
|
||
|
params.permit(:glm_source, :glm_content)
|
||
|
end
|
||
|
end
|