joegattnet/joegattnet_v3

View on GitHub
app/jobs/sync_note_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SyncNoteJob < ActiveJob::Base
  queue_as :high_priority

  def perform(evernote_note)
    EvernoteRequest.new.sync_down(evernote_note)
  end
end