2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
18 lines
575 B
Ruby
18 lines
575 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NewNoteWorker
|
|
include ApplicationWorker
|
|
|
|
# Keep extra parameter to preserve backwards compatibility with
|
|
# old `NewNoteWorker` jobs (can remove later)
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
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
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|