foradian / fluxday

A user-friendly, free & opensource task & productivity management tool for growing startups
http://fluxday.io/
Apache License 2.0
476 stars 174 forks source link

Password reset functionality not available? #46

Closed dtryan123 closed 5 years ago

dtryan123 commented 6 years ago

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

ismudnx commented 6 years ago

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 6 years ago

Thank you! Appreciate the feedback.