summaryrefslogtreecommitdiff
path: root/app/models/project_services/builds_email_service.rb
blob: f2295a95b60410faf7cd75bb7e719c148508836b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

# 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
    %w[]
  end
end