summaryrefslogtreecommitdiff
path: root/app/experiments/new_project_sast_enabled_experiment.rb
blob: b7b4552f0cc1681f9166ea6fa8b9c17f32b46803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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