2021-11-18 22:05:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class NewProjectSastEnabledExperiment < ApplicationExperiment # rubocop:disable Gitlab/NamespacedClass
|
|
|
|
def publish(_result = nil)
|
|
|
|
super
|
|
|
|
|
|
|
|
publish_to_database
|
|
|
|
end
|
|
|
|
|
|
|
|
def candidate_behavior
|
|
|
|
end
|
|
|
|
|
|
|
|
def free_indicator_behavior
|
|
|
|
end
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
def unchecked_candidate_behavior
|
|
|
|
end
|
2021-11-18 22:05:49 +05:30
|
|
|
end
|