18 lines
319 B
Ruby
18 lines
319 B
Ruby
# 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
|
|
|
|
def unchecked_candidate_behavior
|
|
end
|
|
end
|