debian-mirror-gitlab/app/models/analytics/devops_adoption/segment.rb

25 lines
692 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# 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