@idsoftsource/initial-process 1.2.8 → 1.2.9
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.
|
@@ -659,8 +659,19 @@ class UserDetailService {
|
|
|
659
659
|
});
|
|
660
660
|
return params;
|
|
661
661
|
}
|
|
662
|
-
getByUserId(
|
|
663
|
-
|
|
662
|
+
// getByUserId(
|
|
663
|
+
// userId: string,
|
|
664
|
+
// query?: any
|
|
665
|
+
// ): Observable<UserAccountReadModel> {
|
|
666
|
+
// return this.http.get<UserAccountReadModel>(
|
|
667
|
+
// `${this.baseUrl}/GetByUserId`,
|
|
668
|
+
// {
|
|
669
|
+
// params: this.buildParams(query),
|
|
670
|
+
// }
|
|
671
|
+
// );
|
|
672
|
+
// }
|
|
673
|
+
getByUserId(id, query) {
|
|
674
|
+
return this.http.get(`${this.baseUrl}/GetByUserId/${id}`, {
|
|
664
675
|
params: this.buildParams(query),
|
|
665
676
|
});
|
|
666
677
|
}
|