blob: c6b5a967af9faabfd47059b884ee5a41029417a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# frozen_string_literal: true
class MilestoneRelease < ApplicationRecord
extend SuppressCompositePrimaryKeyWarning
belongs_to :milestone
belongs_to :release
validate :same_project_between_milestone_and_release
private
def same_project_between_milestone_and_release
return if milestone&.project_id == release&.project_id
return if milestone&.group_id
errors.add(:base, _('Release does not have the same project as the milestone'))
end
end
MilestoneRelease.prepend_if_ee('EE::MilestoneRelease')
|