debian-mirror-gitlab/app/models/project_services/builds_email_service.rb

14 lines
263 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
# This class is to be removed with 9.1
# We should also by then remove BuildsEmailService from database
2015-12-23 02:04:40 +05:30
class BuildsEmailService < Service
2017-08-17 22:00:37 +05:30
def self.to_param
2015-12-23 02:04:40 +05:30
'builds_email'
end
2017-08-17 22:00:37 +05:30
def self.supported_events
%w[]
2015-12-23 02:04:40 +05:30
end
end