Skip to content

Commit

Permalink
Merge pull request #779 from MadhuMosip/develop
Browse files Browse the repository at this point in the history
MOSIP-37266 Passing lang code in profile API
  • Loading branch information
aranaravi authored Nov 7, 2024
2 parents 1006606 + 5332193 commit 5d12f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resident-ui/src/app/core/services/data-storage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ export class DataStorageService {
return this.httpClient.post(this.BASE_URL + '/auth-lock-unlock', request, { observe: 'response'});
}

getProfileInfo(langCode) {
return this.httpClient.get(this.BASE_URL + '/profile');
getProfileInfo(langCode:any) {
return this.httpClient.get(this.BASE_URL + '/profile' + '?languageCode=' + langCode);
}

getServiceHistory(request: any, filters: any,pageSize1:any) {
Expand Down

0 comments on commit 5d12f9d

Please sign in to comment.