Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add aedp_vadx feature toggle for experimental work safeguard #33218

Merged
merged 4 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const { snakeCase } = require('lodash');

Check warning on line 1 in src/applications/_mock-form-ae-design-patterns/mocks/endpoints/feature-toggles/index.js

View workflow job for this annotation

GitHub Actions / App Isolation Annotations

Staged Continuous Deployment App Isolation Conflict

*WARNING* This PR contains changes related to an application that is currently not isolated. As of Feb 3, 2025 deployment may no longer be possible for apps that are not isolated. Please isolate this app from other directories in 'src/applications' to prevent future deployment issues. More information on your app's status can be seen here: https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/frontend-support-dashboard/cross-app-import-report Please reach out to Frontend Platform Support with any questions.

// add and remove feature toggles here by name, but generally keep all values as false
// instead use generateFeatureToggles in server.js to set the toggle values
const profileToggles = {
profileUseExperimental: false,
aedpVADX: false,
coeAccess: true,
showEduBenefits1990Wizard: true,
showEduBenefits0994Wizard: true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const delay = require('mocker-api/lib/delay');

Check warning on line 1 in src/applications/_mock-form-ae-design-patterns/mocks/server.js

View workflow job for this annotation

GitHub Actions / App Isolation Annotations

Staged Continuous Deployment App Isolation Conflict

*WARNING* This PR contains changes related to an application that is currently not isolated. As of Feb 3, 2025 deployment may no longer be possible for apps that are not isolated. Please isolate this app from other directories in 'src/applications' to prevent future deployment issues. More information on your app's status can be seen here: https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/frontend-support-dashboard/cross-app-import-report Please reach out to Frontend Platform Support with any questions.

const address = require('./endpoints/address');
const emailAddress = require('./endpoints/email-addresses');
Expand Down Expand Up @@ -48,6 +48,7 @@
generateFeatureToggles({
profileUseExperimental: true,
coeAccess: true,
aedpVADX: true,
}),
),
secondsOfDelay,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"accreditedRepresentativePortalFrontend": "accredited_representative_portal_frontend",
"accreditedRepresentativePortalPilot": "accredited_representative_portal_pilot",
"aedpVADX": "aedp_VADX",
"allClaimsAddDisabilitiesEnhancement": "all_claims_add_disabilities_enhancement",
"askVaDashboardFeature": "ask_va_dashboard_feature",
"askVaFormFeature": "ask_va_form_feature",
Expand Down
Loading