diff --git a/app/__init__.py b/app/__init__.py index 883449e..f1f1a29 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -118,6 +118,7 @@ app.register_blueprint(connect_views.cneg001) app.register_blueprint(webforms_views.weg001) +app.register_blueprint(webforms_views.weg002) app.register_blueprint(notary_views.neg004) diff --git a/app/ds_config_sample.py b/app/ds_config_sample.py index ff3864d..7189933 100644 --- a/app/ds_config_sample.py +++ b/app/ds_config_sample.py @@ -1,10 +1,10 @@ # ds_config.py # -# DocuSign configuration settings +# Docusign configuration settings DS_CONFIG = { - "ds_client_id": "{INTEGRATION_KEY_AUTH_CODE}", # The app's DocuSign integration key - "ds_client_secret": "{SECRET_KEY}", # The app's DocuSign integration key's secret + "ds_client_id": "{INTEGRATION_KEY_AUTH_CODE}", # The app's Docusign integration key + "ds_client_secret": "{SECRET_KEY}", # The app's Docusign integration key's secret "organization_id": "{ORGANIZATION_ID}", # A GUID value that identifies the organization "signer_email": "{SIGNER_EMAIL}", "signer_name": "{SIGNER_NAME}", @@ -16,10 +16,10 @@ "rooms_api_client_host": "https://demo.rooms.docusign.com/restapi", "monitor_api_client_host": "https://lens-d.docusign.net", "admin_api_client_host": "https://api-d.docusign.net/management", - "webforms_api_client_host": "https://apps-d.docusign.com/api/webforms/v1.1", + "webforms_api_client_host": "https://apps-d.docusign.com/api/webforms", "allow_silent_authentication": True, # a user can be silently authenticated if they have an # active login session on another tab of the same browser - "target_account_id": None, # Set if you want a specific DocuSign AccountId, + "target_account_id": None, # Set if you want a specific Docusign AccountId, # If None, the user's default account will be used. "demo_doc_path": "demo_documents", "doc_salary_docx": "World_Wide_Corp_salary.docx", diff --git a/app/quick_acg/quick_acg_app/templates/base.html b/app/quick_acg/quick_acg_app/templates/base.html index 56ecec7..6e1b71b 100644 --- a/app/quick_acg/quick_acg_app/templates/base.html +++ b/app/quick_acg/quick_acg_app/templates/base.html @@ -15,7 +15,7 @@