2021-09-06 08:11:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-02-10 10:12:42 -05:00
|
|
|
class CombinedRegistrationExperiment < ApplicationExperiment
|
2021-09-06 08:11:14 -04:00
|
|
|
include Rails.application.routes.url_helpers
|
|
|
|
|
2022-02-21 07:16:55 -05:00
|
|
|
control { new_users_sign_up_group_path }
|
|
|
|
candidate { new_users_sign_up_groups_project_path }
|
|
|
|
|
2021-09-14 17:11:58 -04:00
|
|
|
def key_for(source, _ = nil)
|
|
|
|
super(source, 'force_company_trial')
|
|
|
|
end
|
|
|
|
|
2021-12-17 19:14:00 -05:00
|
|
|
def redirect_path
|
2021-09-06 08:11:14 -04:00
|
|
|
run
|
|
|
|
end
|
|
|
|
end
|