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

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

class ExperimentUser < ApplicationRecord
  include ::Gitlab::Experimentation::GroupTypes

  belongs_to :experiment
  belongs_to :user

  enum group_type: { GROUP_CONTROL => 0, GROUP_EXPERIMENTAL => 1 }

  validates :experiment_id, presence: true
  validates :user_id, presence: true
  validates :group_type, presence: true
end