Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new_project_sast_enabled_experiment.rb « experiments « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a779b8ec6339652a8d3582ebed8ac8b48a5886e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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

  def unchecked_free_indicator_behavior
  end
end