File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
docassemble/EFSPIntegration/data/questions Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,22 @@ Main interviews of import:
99* any_filing_interview.yml: allows you to make any type of filing, initial or subsequent
1010* admin_interview.yml: lets you handle admin / user functionality, outside of the context of cases and filings
1111
12- In progress!
12+ ## Config
13+
14+ Different parts of this package expect the below to be present in Docassemble's
15+ config.
16+
17+ ``` yaml
18+ efile proxy :
19+ # The URL where the Efile Proxy Server is running
20+ url : https:...
21+ # The Proxy Server's API Key (should be provided to you by the sever admins)
22+ api key : ...
23+ # If you're given an EFSP global fee waiver ID for your jurisdiction, put it here
24+ global waivers :
25+ illinois : ...
26+ massachusetts : ...
27+ ` ` `
1328
1429## Authors
1530
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ code: |
5151 tyler_login
5252 lead_contact = users[0]
5353 main_document.completed
54- tyler_payment_id = get_config('efile proxy', {}).get('global waiver ', '')
54+ tyler_payment_id = get_config('efile proxy', {}).get('global waivers ', [''])[0]
5555 ready_to_efile
5656 efile
5757 ending_screen
You can’t perform that action at this time.
0 commit comments