ios - Is there a way of resetting a user's password in Realm Database -
i able reset user's password, in case have forgotten it. possible using realm framework. natural extension problem, there way of changing user's password upon entering (correctly) current password.
i creating ios application in swift.
thanks in advance!
if using realm mobile platform, provide syncuser.changepassword(_:, completion:)
, syncuser.changepassword(_:, foruserid:, completion:)
apis.
https://realm.io/docs/swift/latest/#changing-passwords
we have not provided convenient way achieve "forgot password?" feature currently, need implement such ui , workflow yourself.
is there way of changing user's password upon entering (correctly) current password.
you need try logging in see if current password correct.
Comments
Post a Comment