10 lines
199 B
Ruby
10 lines
199 B
Ruby
module Projects
|
|
module GroupLinks
|
|
class DestroyService < BaseService
|
|
def execute(group_link)
|
|
return false unless group_link
|
|
group_link.destroy
|
|
end
|
|
end
|
|
end
|
|
end
|