Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/environments/environment.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,4 +519,6 @@ export const environment = {
siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,
getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
};
3 changes: 3 additions & 0 deletions src/environments/environment.development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,4 +519,7 @@ export const environment = {
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,

getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,

};
3 changes: 3 additions & 0 deletions src/environments/environment.local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,4 +523,7 @@ export const environment = {
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,

getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,

};
3 changes: 3 additions & 0 deletions src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -511,4 +511,7 @@ export const environment = {
siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,

getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
};
23 changes: 22 additions & 1 deletion src/environments/environment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,22 @@ const FHIR_API = `${FHIRIP}/fhirapi-v1.0/`;
const mmuUICasesheet = `${tmUI_IP}tmui-v1.0`;
const sessionStorageEncKey = '';

const siteKey = '';
const captchaChallengeURL = '';
const enableCaptcha = false;

export const environment = {
production: true,
isTMOffline: false,
encKey: sessionStorageEncKey,
app: `MMU`,
tracking: {
enabled: true,
trackingPlatform: 'matomo',
platform: 'matomo',
siteId: 3, // The new Site ID from Matomo
trackerUrl: 'https://matomo.piramalswasthya.org/',
},
RBSTest: `RBS Test`,
visualAcuityTest: `Visual Acuity Test`,
haemoglobinTest: `Haemoglobin Test`,
Expand Down Expand Up @@ -495,10 +506,20 @@ export const environment = {
getBenIdForhealthID: `${FHIR_API}healthID/getBenIdForhealthID`,

/* Abha V3 APIs */
requestOtpForAbhaEnroll: `${FHIR_API}abhaCreation/requestOtpForAbhaEnrollment`,
requestOtpForAbhaEnroll: `${FHIR_API}abhaCreation/requestOtpForAbhaEnrollment`,
abhaEnrollmentByAadhaar: `${FHIR_API}abhaCreation/abhaEnrollmentByAadhaar`,
verifyMobileForAbhaAuth: `${FHIR_API}abhaCreation/verifyAuthByMobile`,
requestOtpForLogin: `${FHIR_API}abhaLogin/abhaLoginRequestOtp`,
verifyOtpForLogin: `${FHIR_API}abhaLogin/verifyAbhaLogin`,
printPngCard: `${FHIR_API}abhaCreation/printAbhaCard`,
//adding this missing env to resolve an error from common-ui
printWebLoginPhrCard: `${FHIR_API}abhaLogin/printWebLoginPhrCard`,

siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,


getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
};
Loading