Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit 7aefd2b

Browse files
authored
Merge pull request #415 from icmaa/feature/add-reset-password-using-reset-token-method
Add `resetPasswordUsingResetToken` to `magento1` platform
2 parents 1737a18 + dd77814 commit 7aefd2b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Add ElasticSearch client support for HTTP authentication - @cewald (#397)
1616
- Endpoint for reset password with reset token. Only for Magento 2 - @Fifciu
1717
- Varnish Cache with autoinvalidation by Cache tags as addon - @Fifciu
18+
- Add `resetPasswordUsingResetToken` to `magento1` platform - @cewald (#415)
1819

1920
### Fixed
2021
- add es7 support for map url module and fixed default index for es config - @gibkigonzo

src/platform/magento1/user.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ class UserProxy extends AbstractUserProxy {
3434
changePassword (passwordData) {
3535
return this.api.user.changePassword(passwordData)
3636
}
37+
resetPasswordUsingResetToken (resetData) {
38+
return this.api.user.resetPasswordUsingResetToken(resetData)
39+
}
3740
}
3841

3942
module.exports = UserProxy

0 commit comments

Comments
 (0)