mirror of https://github.com/vector-im/riot-web
Merge pull request #6638 from matrix-org/palid/dx/typescriptify-password-reset
Add missing typespull/21833/head
commit
5a1633d53c
|
@ -53,7 +53,7 @@ export default class PasswordReset {
|
||||||
* @param {string} newPassword The new password for the account.
|
* @param {string} newPassword The new password for the account.
|
||||||
* @return {Promise} Resolves when the email has been sent. Then call checkEmailLinkClicked().
|
* @return {Promise} Resolves when the email has been sent. Then call checkEmailLinkClicked().
|
||||||
*/
|
*/
|
||||||
public resetPassword(emailAddress, newPassword): Promise<IRequestTokenResponse> {
|
public resetPassword(emailAddress: string, newPassword: string): Promise<IRequestTokenResponse> {
|
||||||
this.password = newPassword;
|
this.password = newPassword;
|
||||||
return this.client.requestPasswordEmailToken(emailAddress, this.clientSecret, 1).then((res) => {
|
return this.client.requestPasswordEmailToken(emailAddress, this.clientSecret, 1).then((res) => {
|
||||||
this.sessionId = res.sid;
|
this.sessionId = res.sid;
|
||||||
|
|
Loading…
Reference in New Issue