Skip to content

Commit

Permalink
add member determinations for eligible members (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanEddyIC authored Aug 21, 2023
1 parent 7304c11 commit 2cf1679
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion app/helpers/financial_application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ def tax_household_member_determination(f_name, l_name, hbx_id)
:magi_medicaid_monthly_household_income => 6_000,
:is_non_magi_medicaid_eligible => false,
:is_without_assistance => false,
:category_determinations => category_determinations
:category_determinations => category_determinations,
:member_determinations => [eligible_member_determination]
},
:applicant_reference => {
:first_name => f_name,
Expand Down Expand Up @@ -280,6 +281,15 @@ def ineligible_tax_household_member_determination(f_name, l_name, hbx_id)
}
end

def eligible_member_determination
{
:kind => 'Insurance Assistance Determination',
:criteria_met => true,
:determination_reasons => [],
eligibility_overrides: []
}
end

def ineligible_member_determination
{
:kind => 'Insurance Assistance Determination',
Expand Down

0 comments on commit 2cf1679

Please sign in to comment.