crowdAI/crowdai

View on GitHub
app/jobs/resend_account_confirmation_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ResendAccountConfirmationJob < ApplicationJob
  queue_as :default

  def perform(participant_id)
    participant = Participant.find(participant_id)
    participant.send_confirmation_instructions
  end
end