rez_core 2.1.108 → 2.1.109

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.1.108",
3
+ "version": "2.1.109",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -47,7 +47,7 @@ export class UserService extends EntityServiceImpl {
47
47
 
48
48
  let existingUser = await this.userRepository.findByEmailId(
49
49
  userData.email_id,
50
- loggedInUser?.organization_id,
50
+ // loggedInUser?.organization_id,
51
51
  );
52
52
  if (existingUser) {
53
53
  return { success: false, error: 'User with this email already exists' };
@@ -55,7 +55,7 @@ export class UserService extends EntityServiceImpl {
55
55
 
56
56
  existingUser = await this.userRepository.findByMobile(
57
57
  userData.mobile,
58
- loggedInUser?.organization_id,
58
+ // loggedInUser?.organization_id,
59
59
  );
60
60
  if (existingUser) {
61
61
  return { success: false, error: 'User with this mobile already exists' };