16 lines
355 B
Ruby
16 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
# This class is to be removed with 9.1
|
|
# We should also by then remove BuildsEmailService from database
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/331064
|
|
module Integrations
|
|
class BuildsEmail < Integration
|
|
def self.to_param
|
|
'builds_email'
|
|
end
|
|
|
|
def self.supported_events
|
|
%w[]
|
|
end
|
|
end
|
|
end
|