debian-mirror-gitlab/app/models/group_label.rb
2023-06-20 00:43:36 +05:30

19 lines
375 B
Ruby

# frozen_string_literal: true
class GroupLabel < Label
belongs_to :group
belongs_to :parent_container, foreign_key: :group_id, class_name: 'Group'
validates :group, presence: true
alias_attribute :subject, :group
def subject_foreign_key
'group_id'
end
def preloaded_parent_container
association(:group).loaded? ? group : parent_container
end
end