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: 4aca4c875b212c222299008853fee5dc3793efb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class NewProjectSastEnabledExperiment < ApplicationExperiment
  control { }
  variant(:candidate) { }
  variant(:free_indicator) { }
  variant(:unchecked_candidate) { }
  variant(:unchecked_free_indicator) { }

  def publish(*args)
    super

    publish_to_database
  end
end