I have an app set up with Devise log in and I want to implement two factor authentication with Authy/Twilio. I have it set up where if the user goes to the path /enable_authy they can get a text-code to verify their account. I'm trying to make it so it's required to do this, not just a bonus.
My routes...
devise_for :users,
:controllers => { :omniauth_callbacks => "users/omniauth_callbacks"},
:path_names => {
:verify_authy => "/verify-token",
:enable_authy => "/enable_authy",
:verify_authy_installation => "/verify-installation"
}
Twilio developer evangelist here.
There's no way with the gem itself to force a user to enable two factor authentication. You could, however, ensure this yourself with a
before_action
in yourApplicationController
. You'd just need to check whether your signed in user had Authy enabled and redirect them to/enable_authy
if they don't.Something like:
You might also want to set a flash message to explain what's happened or store the path the user was intending to visit so that you can redirect them there after they are set up with 2FA.
Let me know if that helps at all.