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

segment.rb « devops_adoption « analytics « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71d4a3126273e6f33a08240d65a4b195e8f0057c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class Analytics::DevopsAdoption::Segment < ApplicationRecord
  ALLOWED_SEGMENT_COUNT = 20

  has_many :segment_selections
  has_many :groups, through: :segment_selections

  validates :name, presence: true, uniqueness: true, length: { maximum: 255 }
  validate :validate_segment_count

  accepts_nested_attributes_for :segment_selections, allow_destroy: true

  scope :ordered_by_name, -> { order(:name) }
  scope :with_groups, -> { preload(:groups) }

  private

  def validate_segment_count
    if self.class.count >= ALLOWED_SEGMENT_COUNT
      errors.add(:name, s_('DevopsAdoptionSegment|The maximum number of segments has been reached'))
    end
  end
end