gitlab-org--gitlab-foss/app/models/project_services/deployment_service.rb

12 lines
306 B
Ruby
Raw Normal View History

# Base class for deployment services
#
# These services integrate with a deployment solution like Kubernetes/OpenShift,
# Mesosphere, etc, to provide additional features to environments.
class DeploymentService < Service
default_value_for :category, 'deployment'
def supported_events
[]
end
end