Skip to content

Commit

Permalink
MOSIP-37266 Passing lang code in profile API
Browse files Browse the repository at this point in the history
Signed-off-by: MadhuMosip <[email protected]>
  • Loading branch information
MadhuMosip committed Nov 7, 2024
1 parent b841dbc commit 6819485
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 6819485

Please sign in to comment.