Skip to content

Commit

Permalink
[Automated] Merged master into target k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
va-vsp-bot authored Apr 17, 2024
2 parents 6fadbaf + 88ec761 commit c8fc79d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"form1[0].#subform[3].CheckBox1[1]": "<%= nil %>",
"form1[0].#subform[3].Email_Address[3]": "<%= nil %>",
"form1[0].#subform[3].VA_File_Number_If_Applicable[1]": "<%= form.data.dig('veteran_id', 'va_file_number') %>",
"form1[0].#subform[3].CurrentlyHomeless[0]": "<%= form.data.dig('living_situation', 'none') ? 1 : 0 %>",

"form1[0].#subform[4].I_Live_Or_Sleep_In_A_Place_That_Is_Not_Meant_For_Regular_Sleeping[0]": "<%= form.data.dig('living_situation', 'overnight') ? 1 : 0 %>",
"form1[0].#subform[4].I_Live_In_A_Shelter[0]": "<%= form.data.dig('living_situation', 'shelter') ? 1 : 0 %>",
Expand All @@ -57,10 +58,8 @@
"form1[0].#subform[4].IN_THE_NEXT_30_DAYS_I_WILL_LOSE_MY_HOME[0]": "<%= form.data.dig('living_situation', 'losing_home') ? 1 : 0 %>",
"form1[0].#subform[4].NONE_OF_THESE_SITUATIONS_APPLY_TO_ME[0]": "<%= form.data.dig('living_situation', 'none') ? 1 : 0 %>",
"form1[0].#subform[4].OTHER_Specify[0]": "<%= form.data.dig('living_situation', 'other_risk') ? 1 : 0 %>",

"form1[0].#subform[3].CurrentlyHomeless[0]": "<%= form.data.dig('living_situation', 'none') ? 1 : 0 %>",
"form1[0].#subform[4].Other1[0]": "<%= form.data['other_housing_risks'] %>",

"form1[0].#subform[3].Other1[0]": "<%= form.data['other_housing_risks'] %>",
"form1[0].#subform[4].Veterans_SocialSecurityNumber_LastFourNumbers[1]": "<%= form.data.dig('veteran_id', 'ssn')&.[](5..8) %>",
"form1[0].#subform[4].Veterans_SocialSecurityNumber_SecondTwoNumbers[1]": "<%= form.data.dig('veteran_id', 'ssn')&.[](3..4) %>",
"form1[0].#subform[4].Veterans_SocialSecurityNumber_FirstThreeNumbers[1]": "<%= form.data.dig('veteran_id', 'ssn')&.[](0..2) %>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def self.stamp_auth_text(stamped_template_path, current_loa)
end
coords = [10, 10]
text = SUBMISSION_TEXT + current_time
page = 0
desired_stamp = { coords:, text:, page: }
desired_stamp = { coords:, text: }
verify(stamped_template_path) do
stamp(desired_stamp, stamped_template_path, append_to_stamp: auth_text, text_only: false)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
},
"living_situation": {
"overnight": true,
"losing_home": true
"losing_home": true,
"other_risk": true
},
"other_housing_risks": "Other housing risks",
"mailing_address_yes_no": true,
Expand Down

0 comments on commit c8fc79d

Please sign in to comment.