DEV Community

Discussion on: Developers Dilemma - Storing Passwords

Collapse
 
ajrom profile image
A.J. Romaniello

Exactly what lead me to the idea of only using them for authentication and allows me to spend more time on building out the rest of the application.

There are some disadvantages to be aware of:

  • Having to build support for multiple authentication providers can be a hassle
  • Can lead to GEM madness if mixing with omniauth since you need a new gem for every strategy you want a user to be able to log in with

That being said I think using both is probably the best way to go! Thanks for your thoughts.