Do Not SMS and Wrong Number Action Handler
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
added 2 commits
- src/extensions/action-handlers/civicrm.js 0 → 100644
101 id: contact['external_id'] 102 }; 103 104 return await post( 105 config, 106 "Contact", 107 "create", 108 json 109 ); 110 break; 111 112 case 'wrong_number': 113 114 var json = { 115 sequential: 1, 116 id: coustom_field['phone_id'], changed this line in version 4 of the diff
assigned to @jtwyman
assigned to @seamuslee and unassigned @jtwyman
- docs/How_to_integrate_with_CiviCRM.md 0 → 100644
10 To connect with CiviCRM you should include CIVICRM_API_KEY, CIVICRM_SITE_KEY, CIVICRM_DOMAIN in the .env file: 11 12 - CIVICRM_API_KEY: API Key is the API of a contact/user in your CiviCRM installation, More info [here](https://docs.civicrm.org/sysadmin/en/latest/setup/api-keys). 13 - CIVICRM_SITE_KEY: SITE key can be found in your CiviCRM's civicrm.settings.php file. 14 - CIVICRM_DOMAIN: CIVICRM_DOMAIN is the full URL of the CiviCRM API interface. You can get it from the CiviCRM dashboard > Help > Developer > API Explorer. 15 16 #### CiviCRM contact loader 17 18 This extension helps to load contact from CiviCRM instance to Spoke instance. These are the step should be followed: 19 20 1. Get the civicrm contact loader folder from [here](https://www.google.com/url?q=https://lab.civicrm.org/asha/spoke-integration/-/tree/master/src/extensions/contact-loaders/civicrm&sa=D&source=editors&ust=1629657691875000&usg=AOvVaw2xEFAQqyN54_R46Vyuga5R) and paste inside spoke/src/extensions/contact-loaders folder. 21 2. Enable the contact loader by adding ‘civicrm’ for CONTACT_LOADERS in the .env file. 22 23 Example: CONTACT_LOADERS=csv-upload,test-fakedata,civicrm 24 25 3. Run ‘Yarn dev’ to start the development. changed this line in version 4 of the diff
- docs/How_to_integrate_with_CiviCRM.md 0 → 100644
5 - CiviCRM buildkit: https://docs.civicrm.org/dev/en/latest/tools/buildkit 6 - Spoke: https://github.com/MoveOnOrg/Spoke/blob/main/docs/HOWTO_DEVELOPMENT_LOCAL_SETUP.md 7 8 #### Configure Spoke env vars 9 10 To connect with CiviCRM you should include CIVICRM_API_KEY, CIVICRM_SITE_KEY, CIVICRM_DOMAIN in the .env file: 11 12 - CIVICRM_API_KEY: API Key is the API of a contact/user in your CiviCRM installation, More info [here](https://docs.civicrm.org/sysadmin/en/latest/setup/api-keys). 13 - CIVICRM_SITE_KEY: SITE key can be found in your CiviCRM's civicrm.settings.php file. 14 - CIVICRM_DOMAIN: CIVICRM_DOMAIN is the full URL of the CiviCRM API interface. You can get it from the CiviCRM dashboard > Help > Developer > API Explorer. 15 16 #### CiviCRM contact loader 17 18 This extension helps to load contact from CiviCRM instance to Spoke instance. These are the step should be followed: 19 20 1. Get the civicrm contact loader folder from [here](https://www.google.com/url?q=https://lab.civicrm.org/asha/spoke-integration/-/tree/master/src/extensions/contact-loaders/civicrm&sa=D&source=editors&ust=1629657691875000&usg=AOvVaw2xEFAQqyN54_R46Vyuga5R) and paste inside spoke/src/extensions/contact-loaders folder. @seamuslee will we need to change this URL at some point?
changed this line in version 4 of the diff
added 2 commits
mentioned in commit 70df7088
Please register or sign in to reply