app/jobs/sync_watched_episodes_with_trakt_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SyncWatchedEpisodesWithTraktJob < ActiveJob::Base
  def perform
    ActiveRecord::Base.connection_pool.with_connection do
      ::Services::SyncWatchedEpisodesWithTrakt.new.perform
    end
  end
end