Maintaining and expanding OTIS SMS
Expanding for new legal issues
- 1. Creating triage in Guided Navigation
- 2. Creating case acceptance webform
- 3. Create a rest export for the case acceptance
- 4. Updating Twilio for new legal issue
- 5. Twilio token updates
- 6. SMS etransfer failures
Demographic taxonomy terms
Taxonomy terms for gender, race, ethnicity, etc, that are used in the SMS application, are stored in functions rather than pulled from the website.
Any change needs to be made in both the relevant otis-load and otis-validate functions. Each demographic term has its own pair of functions (for example, otis-load-genders and otis-validate-genders).
if (event.langcode == null || event.langcode == 'en') {
marital.push('Single','Married','Divorced','Separated','Widowed');
marital.push('Other', 'Prefer not to respond');
}
else {
marital.push('Soltero','Casado','Divorciado','Separado','Viudo');
marital.push('Otros', 'Prefiero no contestar');
}
Todo
Replace this with API calls to the website.