The record id of the forgot password confirmation record.
Returns Promise<boolean>
generate
generate(email): Promise<string>
Creates a Forgot Password Confirmation Record. This will be to remember that
a user has made a request to reset a password. Throws an error if the email doesn't
exist.
Parameters
email: string
Returns Promise<string>
The record id. This should be included in the reset password link.
get
get(recordId): Promise<undefined | string>
Gets the email associated with the forgot password confirmation record
or undefined if it's not present.
A ForgotPasswordStore using an ExpiringStorage to hold the necessary records.