@cocreate/users 1.17.3 → 1.17.4
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/CoCreate.config.js +1 -1
- package/package.json +1 -1
- package/src/server.js +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.17.4](https://github.com/CoCreate-app/CoCreate-users/compare/v1.17.3...v1.17.4) (2023-04-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* comment code that added org as a db in platform ([ff42708](https://github.com/CoCreate-app/CoCreate-users/commit/ff427084dbeb2bbf60c323af17ced6d20ca6f0d6))
|
|
7
|
+
* renamed domans to hosts ([ca9c918](https://github.com/CoCreate-app/CoCreate-users/commit/ca9c91812225464ea582fbf78d06ca871f5d76d4))
|
|
8
|
+
|
|
1
9
|
## [1.17.3](https://github.com/CoCreate-app/CoCreate-users/compare/v1.17.2...v1.17.3) (2023-03-30)
|
|
2
10
|
|
|
3
11
|
|
package/CoCreate.config.js
CHANGED
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -24,10 +24,10 @@ class CoCreateUser {
|
|
|
24
24
|
const orgDB = data.orgDB;
|
|
25
25
|
|
|
26
26
|
// if new orgDb Create new user in new org db users collection
|
|
27
|
-
if (orgDB && orgDB != data.organization_id) {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
27
|
+
// if (orgDB && orgDB != data.organization_id) {
|
|
28
|
+
// let Data = {...data, organization_id: orgDB}
|
|
29
|
+
// self.crud.createDocument(Data)
|
|
30
|
+
// }
|
|
31
31
|
|
|
32
32
|
self.wsManager.send(socket, 'signUp', data);
|
|
33
33
|
|