Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_note_diff_file_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 624b638a24e5d1561a3dc2baacefade7756e1d57 (plain)
1
2
3
4
5
6
7
8
9
class CreateNoteDiffFileWorker
  include ApplicationWorker

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

    diff_note.create_diff_file
  end
end