rez_core 2.2.170 → 2.2.172

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.2.170",
3
+ "version": "2.2.172",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -307,6 +307,8 @@ export class UserService extends EntityServiceImpl {
307
307
  }): Promise<any> {
308
308
  const { email, subdomain } = data;
309
309
 
310
+ console.log('Email and Subdomain', email, subdomain);
311
+
310
312
  if (!email || !subdomain) {
311
313
  return { success: false, message: 'Email and Subdomain is required' };
312
314
  }
@@ -324,6 +326,8 @@ export class UserService extends EntityServiceImpl {
324
326
  }
325
327
  }
326
328
 
329
+ console.log('Email and Subdomain 2nd', email, subdomain);
330
+
327
331
  // 🔹 Step 2: Find the user by email + organization check
328
332
  const user = await this.userRepository.findByEmailId(email);
329
333