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

14 lines
263 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-03-17 23:06:11 +00:00
# This class is to be removed with 9.1
# We should also by then remove BuildsEmailService from database
class BuildsEmailService < Service
def self.to_param
'builds_email'
end
def self.supported_events
2017-03-17 23:06:11 +00:00
%w[]
end
end