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

17 lines
488 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)
def perform(note_id, _params = {})
if note = Note.find_by(id: note_id)
2018-10-15 14:42:47 +05:30
NotificationService.new.new_note(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
end