summaryrefslogtreecommitdiff
path: root/app/workers/create_note_diff_file_worker.rb
blob: 0850250f7e3ec9ce682975ee37fbc4d63b9ab321 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class CreateNoteDiffFileWorker
  include ApplicationWorker

  def perform(diff_note_id)
    diff_note = DiffNote.find(diff_note_id)

    diff_note.create_diff_file
  end
end