foradian/fluxday

Password reset functionality not available?

dtryan123 opened this issue · 2 comments

No Admin or TeamLead reset functionality for local subordinate user. Can it be done from database?

You can do that from the rails console. Not db, since password is encrypted and stored.

user = User.find_by_email('#someemail'); user.update(password: 'password', password_confirmation: 'password')

Thank you! Appreciate the feedback.