gitlab-org--gitlab-foss/app/services/projects/group_links/destroy_service.rb

12 lines
200 B
Ruby
Raw Normal View History

2017-11-01 14:08:18 +00:00
module Projects
module GroupLinks
class DestroyService < BaseService
def execute(group_link)
return false unless group_link
2017-11-01 14:08:18 +00:00
group_link.destroy
end
end
end
end