Skip to content
Open
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
507 changes: 507 additions & 0 deletions src/environments/environment.ci.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/environments/environment.ci.ts.template
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const IDENTITY_API = `<%= IDENTITY_API_BASE %>`;
const sessionStorageEncKey = '<%= SESSION_STORAGE_ENC_KEY %>';
const siteKey = '<%= SITE_KEY %>';
const captchaChallengeURL = '<%= CAPTCHA_CHALLENGE_URL %>';
const enableCaptcha = <%= ENABLE_CAPTCHA %>;
const enableCaptcha = '<%= ENABLE_CAPTCHA %>' === 'true';

export const environment = {
production: true,
Expand Down
2 changes: 2 additions & 0 deletions src/environments/environment.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,8 @@ export const environment = {
printPngCard: `${FHIR_API}abhaCreation/printAbhaCard`,
//adding this missing env to resolve an error from common-ui
printWebLoginPhrCard: `${FHIR_API}abhaLogin/printWebLoginPhrCard`,
getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,

siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
Expand Down
3 changes: 2 additions & 1 deletion src/environments/environment.development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,9 @@ export const environment = {
printPngCard: `${FHIR_API}abhaCreation/printAbhaCard`,
//adding this missing env to resolve an error from common-ui
printWebLoginPhrCard: `${FHIR_API}abhaLogin/printWebLoginPhrCard`,
getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,

};
3 changes: 2 additions & 1 deletion src/environments/environment.local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,8 +519,9 @@ export const environment = {
printPngCard: `${FHIR_API}abhaCreation/printAbhaCard`,
//adding this missing env to resolve an error from common-ui
printWebLoginPhrCard: `${FHIR_API}abhaLogin/printWebLoginPhrCard`,
getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,

};
2 changes: 2 additions & 0 deletions src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,8 @@ export const environment = {
printPngCard: `${FHIR_API}abhaCreation/printAbhaCard`,
//adding this missing env to resolve an error from common-ui
printWebLoginPhrCard: `${FHIR_API}abhaLogin/printWebLoginPhrCard`,
getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
siteKey: siteKey,
captchaChallengeURL: captchaChallengeURL,
enableCaptcha: enableCaptcha,
Expand Down
2 changes: 2 additions & 0 deletions src/environments/environment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,4 +501,6 @@ export const environment = {
requestOtpForLogin: `${FHIR_API}abhaLogin/abhaLoginRequestOtp`,
verifyOtpForLogin: `${FHIR_API}abhaLogin/verifyAbhaLogin`,
printPngCard: `${FHIR_API}abhaCreation/printAbhaCard`,
getUserId: `${COMMON_API}user/userName/`,
checkUsersignExistUrl: `${ADMIN_API}signature1/signexist/`,
};
523 changes: 523 additions & 0 deletions src/environments/environment.ts

Large diffs are not rendered by default.