-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reverts Caseflow Dispatch Validating (#15081)
Connects #14714 Reverts #14047 ### Description No longer requires a selection of Special Issues in Caseflow Dispatch ### Acceptance Criteria - [ ] Code compiles correctly - [ ] Caseflow Dispatch can complete without selecting a Special Issue ### Testing Plan #### FeatureToggle On 1. Feature toggle! ```ruby > FeatureToggle.enable!(:special_issues_revamp) > FeatureToggle.enable!(:special_issues_revamp_dispatch) ``` 2. Log in as FAKE USER 3. Go to `/dispatch` and hit `Establish New Claim` 4. Hit "Route Claim" while no special issues are selected 5. Confirm success 6. Hit back & select a special issue and hit "Route Claim" 7. confirm success!
- Loading branch information
Showing
15 changed files
with
40 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
import { SPECIAL_ISSUES, NEW_SPECIAL_ISSUES } from './SpecialIssues'; | ||
import { SPECIAL_ISSUES, AMA_SPECIAL_ISSUES } from './SpecialIssues'; | ||
|
||
// NEW_SPECIAL_ISSUES was added to SpecialIssues.jsx in 2020-Spring. Currently listed separately from the main list in | ||
// order to be locked to the FeatureToggle :special_issues_revamp here. As a part of removing the feature toggle, | ||
// merge those arrays and refactor away this file. | ||
export const enabledSpecialIssues = isFeatureToggled => isFeatureToggled ? SPECIAL_ISSUES.concat(NEW_SPECIAL_ISSUES) : SPECIAL_ISSUES | ||
export const enabledSpecialIssues = wantsAmaIssues => wantsAmaIssues ? SPECIAL_ISSUES.concat(AMA_SPECIAL_ISSUES) : SPECIAL_ISSUES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.