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