Access the Argo CD Dashboard for Deployment Management:
Find the vets-api-web
node and start the Rails console with:
// add data |
Access the Argo CD Dashboard for Deployment Management:
Find the vets-api-web
node and start the Rails console with:
/** | |
* @fileoverview This module provides functionality to retrieve GMT (Geographical Mean Test) thresholds. | |
* It supports fetching data from production, staging, or using mock data based on configuration toggles. | |
*/ | |
import * as Sentry from '@sentry/browser'; | |
import { apiRequest } from 'platform/utilities/api'; | |
import environment from 'platform/utilities/environment'; | |
// Constants used for calculating thresholds |
const data = { | |
expenses: { | |
expenseRecords: [ | |
{ name: 'Rent', amount: '2000' }, | |
{ name: "Renter's or home insurance", amount: '34' }, | |
{ name: 'Mortgage payment', amount: '435' }, | |
{ name: 'Property tax', amount: '345' }, | |
], | |
creditCardBills: [ |
{ | |
"view:combinedFinancialStatusReport": true, | |
"view:enhancedFinancialStatusReport": true, | |
"otherExpenses": [ | |
{ | |
"name": "Clothing", | |
"amount": "10" | |
}, | |
{ | |
"name": "Food", |
Presubmit Object ACCEPTED - this uses efsr-maximal, I only toggled the chapters but did not modify the data in any way. | |
{ | |
"questions": { | |
"hasRecreationalVehicle": false, | |
"hasVehicle": false, | |
"hasRealEstate": false, | |
"hasDependents": "0", | |
"spouseHasBenefits": false, | |
"isMarried": true, |
{ | |
"personalIdentification": { | |
"ssn": "1234", | |
"fileNumber": "5678", | |
"fsrReason": "Compromise, Waiver" | |
}, | |
"personalData": { | |
"veteranFullName": { | |
"first": "Greg", |
{ | |
"additionalData": { | |
"bankruptcy": { | |
"dateDischarged": "2021-01-01", | |
"courtLocation": "san diego", | |
"docketNumber": "234553" | |
}, | |
"additionalComments": "I need help" | |
}, | |
"questions": { |
import React from 'react'; | |
import { Link } from 'react-router-dom'; | |
import { MiniSummaryCard } from './shared/MiniSummaryCard'; | |
import { setJobIndex } from '../utils/session'; | |
const EmploymentHistorySummaryCard = ({formData, setFormData, isSpouse }) => { | |
const employmentHistory = formData?.employmentHistory || { | |
spouse: { employmentRecords: [] }, | |
veteran: { employmentRecords: [] }, | |
}; |