14 lines
260 B
Ruby
14 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
module WorkItems
|
|
class ResourceLinkEvent < ResourceEvent
|
|
belongs_to :child_work_item, class_name: 'WorkItem'
|
|
|
|
validates :child_work_item, presence: true
|
|
|
|
enum action: {
|
|
add: 1,
|
|
remove: 2
|
|
}
|
|
end
|
|
end
|