debian-mirror-gitlab/app/services/projects/group_links/destroy_service.rb

12 lines
200 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
module Projects
module GroupLinks
class DestroyService < BaseService
def execute(group_link)
return false unless group_link
group_link.destroy
end
end
end
end