|
1 | 1 | <?php |
2 | 2 | // ds_config.php |
3 | 3 | // |
4 | | -// DocuSign configuration settings |
| 4 | +// Docusign configuration settings |
5 | 5 | $DS_CONFIG = [ |
6 | 6 | 'quickstart' => '{QUICKSTART_VALUE}', |
7 | 7 | 'quickACG' => '{QUICK_ACG_VALUE}', |
8 | | - 'ds_client_id' => '{INTEGRATION_KEY_AUTH_CODE}', // The app's DocuSign integration key |
9 | | - 'ds_client_secret' => '{SECRET_KEY}', // The app's DocuSign integration key's secret |
| 8 | + 'ds_client_id' => '{INTEGRATION_KEY_AUTH_CODE}', // The app's Docusign integration key |
| 9 | + 'ds_client_secret' => '{SECRET_KEY}', // The app's Docusign integration key's secret |
10 | 10 | 'signer_email' => '{SIGNER_EMAIL}', |
11 | 11 | 'signer_name' => '{SIGNER_NAME}', |
12 | 12 | 'app_url' => 'http://localhost:8080/public', // The url of the application. |
|
18 | 18 | 'session_secret' => '{SESSION_SECRET}', // Secret for encrypting session cookie content |
19 | 19 | 'allow_silent_authentication' => true, // a user can be silently authenticated if they have an |
20 | 20 | // active login session on another tab of the same browser |
21 | | - 'target_account_id' => false, // Set if you want a specific DocuSign AccountId, If false, the user's default account will be used. |
| 21 | + 'target_account_id' => false, // Set if you want a specific Docusign AccountId, If false, the user's default account will be used. |
22 | 22 | 'demo_doc_path' => 'demo_documents', |
23 | 23 | 'doc_docx' => 'World_Wide_Corp_Battle_Plan_Trafalgar.docx', |
24 | 24 | 'offer_doc_docx' => 'Offer_Letter_Dynamic_Table.docx', |
|
37 | 37 | ]; |
38 | 38 |
|
39 | 39 | $JWT_CONFIG = [ |
40 | | - 'ds_client_id' => '{INTEGRATION_KEY_JWT}', // The app's DocuSign integration key |
| 40 | + 'ds_client_id' => '{INTEGRATION_KEY_JWT}', // The app's Docusign integration key |
41 | 41 | 'authorization_server' => 'account-d.docusign.com', |
42 | 42 | "ds_impersonated_user_id" => '{IMPERSONATED_USER_ID}', // the id of the user |
43 | 43 | "private_key_file" => "./private.key", // path to private key file |
|
0 commit comments