gitlab-org--gitlab-foss/app/services/work_items/parent_links/destroy_service.rb

31 lines
721 B
Ruby

# frozen_string_literal: true
module WorkItems
module ParentLinks
class DestroyService < IssuableLinks::DestroyService
attr_reader :link, :current_user, :parent, :child
def initialize(link, user)
@link = link
@current_user = user
@parent = link.work_item_parent
@child = link.work_item
end
private
def create_notes
SystemNoteService.unrelate_work_item(parent, child, current_user)
end
def not_found_message
_('No Work Item Link found')
end
def permission_to_remove_relation?
can?(current_user, :admin_parent_link, child) && can?(current_user, :admin_parent_link, parent)
end
end
end
end