summaryrefslogtreecommitdiff
path: root/app/services/projects/group_links/destroy_service.rb
blob: fbf31214c285d3f66bb6534df3fb7d158f4a8ca5 (plain)
1
2
3
4
5
6
7
8
9
10
module Projects
  module GroupLinks
    class DestroyService < BaseService
      def execute(group_link)
        return false unless group_link
        group_link.destroy
      end
    end
  end
end