rez_core 0.0.4 → 0.0.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/package.json
CHANGED
|
@@ -149,4 +149,8 @@ export class UserService extends EntityServiceImpl {
|
|
|
149
149
|
async findByEmailId(email_id: string): Promise<UserData | null> {
|
|
150
150
|
return await this.userRepository.findByEmailId(email_id);
|
|
151
151
|
}
|
|
152
|
+
|
|
153
|
+
async findByMobile(mobile: string){
|
|
154
|
+
return await this.userRepository.findByMobile(mobile);
|
|
155
|
+
}
|
|
152
156
|
}
|