debian-mirror-gitlab/app/workers/new_note_worker.rb

26 lines
685 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2016-04-02 18:10:28 +05:30
class NewNoteWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2016-04-02 18:10:28 +05:30
2017-08-17 22:00:37 +05:30
# Keep extra parameter to preserve backwards compatibility with
# old `NewNoteWorker` jobs (can remove later)
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
def perform(note_id, _params = {})
if note = Note.find_by(id: note_id)
2019-02-15 15:39:39 +05:30
NotificationService.new.new_note(note) unless skip_notification?(note)
2017-08-17 22:00:37 +05:30
Notes::PostProcessService.new(note).execute
else
Rails.logger.error("NewNoteWorker: couldn't find note with ID=#{note_id}, skipping job")
end
2016-04-02 18:10:28 +05:30
end
2019-02-15 15:39:39 +05:30
private
# EE-only method
def skip_notification?(note)
false
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-04-02 18:10:28 +05:30
end