class TwoFactorDevices::Gateways::Fake
Fake
otp gateway that just print otp
Public Class Methods
send_otp(token, recipient)
click to toggle source
# File lib/two_factor_devices/gateways/fake.rb, line 5 def self.send_otp(token, recipient) p "OTP Token #{token} fake sent to #{recipient}" end