assemblymade/coderwall

View on GitHub
app/jobs/index_team_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
class IndexTeamJob
  include Sidekiq::Worker

  sidekiq_options queue: :index

  def perform(team_id)
    team = Team.find(team_id)
    team.tire.update_index
  end
end