debian-mirror-gitlab/app/models/list.rb

46 lines
1,008 B
Ruby
Raw Normal View History

2016-09-13 17:45:13 +05:30
class List < ActiveRecord::Base
belongs_to :board
belongs_to :label
2017-08-17 22:00:37 +05:30
enum list_type: { label: 1, closed: 2 }
2016-09-13 17:45:13 +05:30
validates :board, :list_type, presence: true
validates :label, :position, presence: true, if: :label?
validates :label_id, uniqueness: { scope: :board_id }, if: :label?
validates :position, numericality: { only_integer: true, greater_than_or_equal_to: 0 }, if: :label?
before_destroy :can_be_destroyed
scope :destroyable, -> { where(list_type: list_types[:label]) }
scope :movable, -> { where(list_type: list_types[:label]) }
def destroyable?
label?
end
def movable?
label?
end
def title
label? ? label.name : list_type.humanize
end
2016-11-03 12:29:30 +05:30
def as_json(options = {})
super(options).tap do |json|
if options.has_key?(:label)
json[:label] = label.as_json(
project: board.project,
only: [:id, :title, :description, :color]
)
end
end
end
2016-09-13 17:45:13 +05:30
private
def can_be_destroyed
destroyable?
end
end