15 lines
277 B
Ruby
15 lines
277 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
|
|
end
|