13 lines
250 B
Ruby
13 lines
250 B
Ruby
|
class NewNoteWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
sidekiq_options queue: :default
|
||
|
|
||
|
def perform(note_id, note_params)
|
||
|
note = Note.find(note_id)
|
||
|
|
||
|
NotificationService.new.new_note(note)
|
||
|
Notes::PostProcessService.new(note).execute
|
||
|
end
|
||
|
end
|