2021-11-18 22:05:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
class NewProjectSastEnabledExperiment < ApplicationExperiment
|
2021-11-18 22:05:49 +05:30
|
|
|
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
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
def unchecked_free_indicator_behavior
|
|
|
|
end
|
2021-11-18 22:05:49 +05:30
|
|
|
end
|