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

security_reports_mr_widget_prompt_experiment.rb « experiments « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa0ba8e24d41ce1ead4bbcee96e05aa1c3739b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class SecurityReportsMrWidgetPromptExperiment < ApplicationExperiment # rubocop:disable Gitlab/NamespacedClass
  def publish(_result = nil)
    super

    publish_to_database
  end

  # This is a purely client side experiment, and since we don't have a nicer
  # way to define variants yet, we define them here.
  def candidate_behavior
  end
end