2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class Board < ApplicationRecord
|
2018-02-19 14:06:16 -05:00
|
|
|
belongs_to :group
|
2016-07-27 15:32:32 -04:00
|
|
|
belongs_to :project
|
|
|
|
|
2019-06-26 18:32:51 -04:00
|
|
|
has_many :lists, -> { ordered }, dependent: :delete_all # rubocop:disable Cop/ActiveRecordDependent
|
|
|
|
has_many :destroyable_lists, -> { destroyable.ordered }, class_name: "List"
|
2016-07-27 15:32:32 -04:00
|
|
|
|
2017-08-28 17:56:49 -04:00
|
|
|
validates :project, presence: true, if: :project_needed?
|
2018-02-19 14:06:16 -05:00
|
|
|
validates :group, presence: true, unless: :project
|
2017-08-28 17:56:49 -04:00
|
|
|
|
2019-06-13 18:20:03 -04:00
|
|
|
scope :with_associations, -> { preload(:destroyable_lists) }
|
|
|
|
|
2017-08-28 17:56:49 -04:00
|
|
|
def project_needed?
|
2018-02-19 14:06:16 -05:00
|
|
|
!group
|
2017-08-28 17:56:49 -04:00
|
|
|
end
|
2016-09-26 13:39:41 -04:00
|
|
|
|
2019-10-17 08:07:33 -04:00
|
|
|
def resource_parent
|
|
|
|
@resource_parent ||= group || project
|
2017-08-31 15:34:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def group_board?
|
2018-02-19 14:06:16 -05:00
|
|
|
group_id.present?
|
2017-08-31 15:34:57 -04:00
|
|
|
end
|
|
|
|
|
2019-02-14 16:19:59 -05:00
|
|
|
def project_board?
|
|
|
|
project_id.present?
|
|
|
|
end
|
|
|
|
|
2017-05-31 07:34:54 -04:00
|
|
|
def backlog_list
|
|
|
|
lists.merge(List.backlog).take
|
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
def closed_list
|
|
|
|
lists.merge(List.closed).take
|
2016-09-26 13:39:41 -04:00
|
|
|
end
|
2018-06-29 06:51:48 -04:00
|
|
|
|
|
|
|
def scoped?
|
|
|
|
false
|
|
|
|
end
|
2016-07-27 15:32:32 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
Board.prepend_if_ee('EE::Board')
|