debian-mirror-gitlab/app/workers/create_note_diff_file_worker.rb
2021-02-22 17:27:13 +05:30

14 lines
285 B
Ruby

# frozen_string_literal: true
class CreateNoteDiffFileWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
feature_category :code_review
def perform(diff_note_id)
diff_note = DiffNote.find(diff_note_id)
diff_note.create_diff_file
end
end