@idsoftsource/initial-process 1.2.9 → 1.3.0

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,19 +659,8 @@ class UserDetailService {
659
659
  });
660
660
  return params;
661
661
  }
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}`, {
662
+ getByUserId(userId, query) {
663
+ return this.http.get(`${this.baseUrl}/GetByUserId`, {
675
664
  params: this.buildParams(query),
676
665
  });
677
666
  }
@@ -5657,8 +5646,8 @@ class RoleSelectComponent {
5657
5646
  latitude: form.latitude,
5658
5647
  longitude: form.longitude,
5659
5648
  yearsActive: 0,
5660
- headshotFileId: saved?.userDetail?.headshotFileId,
5661
- headshotUrl: saved?.userDetail?.headshotUrl,
5649
+ headshotFileId: this.user.headshotFileId,
5650
+ headshotUrl: this.user.headshotUrl,
5662
5651
  isInitialSetupCompleted: false,
5663
5652
  id: this.userId,
5664
5653
  phoneNumber: form.phoneNumber,