50abbd3e53
Partially addresses #47424.
13 lines
200 B
Ruby
13 lines
200 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupLabel < Label
|
|
belongs_to :group
|
|
|
|
validates :group, presence: true
|
|
|
|
alias_attribute :subject, :group
|
|
|
|
def subject_foreign_key
|
|
'group_id'
|
|
end
|
|
end
|