Skip to content

Commit

Permalink
Merge pull request #780 from MadhuMosip/release-0.9.x
Browse files Browse the repository at this point in the history
MOSIP-37266 Passing lang code in profile API
  • Loading branch information
ckm007 authored Nov 11, 2024
2 parents 99f47c1 + 6819485 commit 2a1d1c1
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 2a1d1c1

Please sign in to comment.