summaryrefslogtreecommitdiff
path: root/app/experiments/combined_registration_experiment.rb
blob: 08c015838db4b2bc0cec719b6ceeaacf3b70f958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class CombinedRegistrationExperiment < ApplicationExperiment # rubocop:disable Gitlab/NamespacedClass
  include Rails.application.routes.url_helpers

  def key_for(source, _ = nil)
    super(source, 'force_company_trial')
  end

  def redirect_path
    run
  end

  def control_behavior
    new_users_sign_up_group_path
  end

  def candidate_behavior
    new_users_sign_up_groups_project_path
  end
end