16 lines
488 B
Ruby
16 lines
488 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NewNoteWorker
|
|
include ApplicationWorker
|
|
|
|
# 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)
|
|
NotificationService.new.new_note(note)
|
|
Notes::PostProcessService.new(note).execute
|
|
else
|
|
Rails.logger.error("NewNoteWorker: couldn't find note with ID=#{note_id}, skipping job")
|
|
end
|
|
end
|
|
end
|