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

alerts_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: 4afce0dfe95be1846ca90ef276a1b302e0a6c615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

# This service is scheduled for removal. All records must
# be deleted before the class can be removed.
# https://gitlab.com/groups/gitlab-org/-/epics/5056
class AlertsService < Service
  before_save :prevent_save

  def self.to_param
    'alerts'
  end

  def self.supported_events
    %w()
  end

  private

  def prevent_save
    errors.add(:base, _('Alerts endpoint is deprecated and should not be created or modified. Use HTTP Integrations instead.'))
    log_error('Prevented attempt to save or update deprecated AlertsService')

    # Stops execution of callbacks and database operation while
    # preserving expectations of #save (will not raise) & #save! (raises)
    # https://guides.rubyonrails.org/active_record_callbacks.html#halting-execution
    throw :abort # rubocop:disable Cop/BanCatchThrow
  end
end