debian-mirror-gitlab/app/models/integrations/builds_email.rb
2021-06-08 01:23:25 +05:30

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