-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
346 additions
and
294 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,12 +1,16 @@ | ||
export const emailTemplateValue = { | ||
territory: "CO", | ||
applicationEndpointUrl: "https://mako-dev.cms.gov/", | ||
timestamp: Date.now(), | ||
get timestamp() { | ||
return Date.now(); | ||
}, | ||
submitterName: "George Harrison", | ||
submitterEmail: "[email protected]", | ||
additionalInformation: | ||
"This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.", | ||
origin: "mako" as const, | ||
appkParentId: null, | ||
proposedEffectiveDate: Date.now() + 5184000000, | ||
get proposedEffectiveDate() { | ||
return Date.now() + 5184000000; | ||
}, | ||
}; |
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,14 +1,24 @@ | ||
export const emailTemplateValue = { | ||
applicationEndpointUrl: "https://mako-dev.cms.gov/", | ||
timestamp: Date.now(), | ||
get timestamp() { | ||
return Date.now(); | ||
}, | ||
actionType: "Respond to Formal RAI", | ||
origin: "mako" as const, | ||
requestedDate: Date.now(), | ||
responseDate: Date.now(), | ||
get requestedDate() { | ||
return Date.now(); | ||
}, | ||
get responseDate() { | ||
return Date.now(); | ||
}, | ||
additionalInformation: | ||
"Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses", | ||
submitterName: "George Harrison", | ||
submitterEmail: "[email protected]", | ||
submissionDate: Date.now(), | ||
proposedEffectiveDate: Date.now() + 5184000000, | ||
get submissionDate() { | ||
return Date.now(); | ||
}, | ||
get proposedEffectiveDate() { | ||
return Date.now() + 5184000000; | ||
}, | ||
}; |
Oops, something went wrong.