Skip to content

Commit

Permalink
config changes
Browse files Browse the repository at this point in the history
Signed-off-by: GOKULRAJ136 <[email protected]>
  • Loading branch information
GOKULRAJ136 committed Feb 5, 2024
1 parent f30e342 commit e7b6e2d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pmp-ui/src/app/core/services/data-storage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class DataStorageService {

createMisp(data: RequestModel): Observable<any> {
return this.http.post(
"https://dev..mosip.net/partnermanagement/v1/misps/misps",data
"https://dev.mosip.net/partnermanagement/v1/misps/misps",data
);
}
createPolicy(data: RequestModel): Observable<any> {
Expand Down
2 changes: 1 addition & 1 deletion pmp-ui/src/app/core/services/misp.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class MispService {

constructor(public http: HttpClient, public appService: AppConfigService) { }

public BASE_URL = "https://dev..mosip.net/partnermanagement/v1/misps";
public BASE_URL = "https://dev.mosip.net/partnermanagement/v1/misps";

getRegistrationMispDetails(request: RequestModel): Observable<any> {
return this.http.get(this.BASE_URL +"/misps");;
Expand Down
2 changes: 1 addition & 1 deletion pmp-ui/src/app/core/services/policy.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class PolicyService{

constructor(public http:HttpClient, public appService:AppConfigService){}

public BASE_URL = "https://dev..mosip.net/partnermanagement/v1/policies";
public BASE_URL = "https://dev.mosip.net/partnermanagement/v1/policies";

getPolicyDetails(request: RequestModel): Observable<any> {
console.log("request>>>"+JSON.stringify(request));
Expand Down
2 changes: 1 addition & 1 deletion pmp-ui/src/assets/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"primaryLangCode": "eng",
"secondaryLangCode": "ara",
"baseUrl": "https://dev..mosip.net/",
"baseUrl": "https://dev.mosip.net/",
"pmpUrl":"/",
"version":"v1/"
}

0 comments on commit e7b6e2d

Please sign in to comment.