11 lines
213 B
Ruby
11 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Workers
|
|
class ResetPassword < Base
|
|
sidekiq_options queue: :urgent
|
|
|
|
def perform(user_id)
|
|
User.find(user_id).send_reset_password_instructions!
|
|
end
|
|
end
|
|
end
|