Password reset functionality not available?
dtryan123 opened this issue · 2 comments
dtryan123 commented
No Admin or TeamLead reset functionality for local subordinate user. Can it be done from database?
ismudnx commented
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')
dtryan123 commented
Thank you! Appreciate the feedback.