forked from ustaxcourt/ef-cms
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #213 from ustaxcourt/test
Merge Sprint 39 into Master
- Loading branch information
Showing
765 changed files
with
15,384 additions
and
9,383 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,4 +1,4 @@ | ||
FROM cypress/base:12.13.0 | ||
FROM cypress/base:12.16.0 | ||
|
||
RUN echo "recache again" | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Case Names | ||
|
||
There are several values used throughout the system to identify cases by name. | ||
|
||
`caseCaptionWithPostfix`: | ||
* Not stored directly on the case but can be computed when needed by appending the `CASE_CAPTION_POSTFIX` constant to the `caseCaption` | ||
* Example: `Selma Horn & Cairo Harris, Petitioners v. Commissioner of Internal Revenue, Respondent` | ||
|
||
`caseCaption`: | ||
* The only computed name value stored directly on the case in persistence | ||
* Example: `Selma Horn & Cairo Harris, Petitioners` | ||
|
||
`caseTitle`: | ||
* Not stored directly on the case - use method `Case.getCaseTitle(caseCaption)` to retrieve value | ||
* Displayed in tables and work queues in the UI to identify a case for internal users | ||
* Persisted on work items to be displayed in the work queues to eliminate the need to retrieve the value from each individual case | ||
* Example: `Selma Horn & Cairo Harris` | ||
|
||
`caseCaptionExtension`: | ||
* Not stored on the case, but can be computed by getting the `caseTitle` and replacing it with '' in the `caseCaption` | ||
* Typically used in PDFs for proper case caption placement | ||
* Example: `Petitioner(s)` |
Oops, something went wrong.