Welcome to mirror list, hosted at ThFree Co, Russian Federation.

builds_email_service.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c526b53d724c1012f6cba22062743904a0e6f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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