gitlab-org--gitlab-foss/app/services/protected_branches/destroy_service.rb

8 lines
145 B
Ruby
Raw Normal View History

module ProtectedBranches
class DestroyService < BaseService
def execute(protected_branch)
protected_branch.destroy
end
end
end