summaryrefslogtreecommitdiff
path: root/app/models/integrations/builds_email.rb
blob: 2628848667eba894012b6ae425a3a6c37e13f08b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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