@cocreate/users 1.36.5 → 1.36.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/src/client.js +2 -1
- package/src/server.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.36.6](https://github.com/CoCreate-app/CoCreate-users/compare/v1.36.5...v1.36.6) (2024-02-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* forgot pasword dispatch success event ([9ed6ddf](https://github.com/CoCreate-app/CoCreate-users/commit/9ed6ddf6402eba3d793174ddfd5b01037f2f97ab))
|
|
7
|
+
* handling of uid ([5690f38](https://github.com/CoCreate-app/CoCreate-users/commit/5690f38fef046a0e24b21aea851f024861d631e0))
|
|
8
|
+
|
|
1
9
|
## [1.36.5](https://github.com/CoCreate-app/CoCreate-users/compare/v1.36.4...v1.36.5) (2024-02-16)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -351,7 +351,8 @@ const CoCreateUser = {
|
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
Crud.socket.send(request).then((response) => {
|
|
354
|
-
|
|
354
|
+
if (response.success)
|
|
355
|
+
document.dispatchEvent(new CustomEvent('forgotPassword'));
|
|
355
356
|
render({
|
|
356
357
|
selector: "[template*='forgotPassword']",
|
|
357
358
|
data: [{
|
package/src/server.js
CHANGED