Other ways to reset password when password reset email is not arriving?

If you must you can do it via the console. Seems odd though, first time I heard of anything like this.

./launcher enter app
rails c
>  u = User.find_by(username: 'USERNAME_HERE')
>  u.password = "PASS"
>  u.save
4 Likes