You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Case:
Currently in sample message rule independent of for which entity type(Individual/Encounter/Enrolment) it is for, it has the below line: const individual = params.entity;
Instead if it is for encounter, the code should have been const encounter = params.entity; like we have already done in visit schedule rule and decision rule.
Need to fix:
For self-implementing organisations and implementation team, this will help to understand better how to access the entity.
The text was updated successfully, but these errors were encountered:
Case:
Currently in sample message rule independent of for which entity type(Individual/Encounter/Enrolment) it is for, it has the below line:
const individual = params.entity;
Instead if it is for encounter, the code should have been
const encounter = params.entity;
like we have already done in visit schedule rule and decision rule.Need to fix:
For self-implementing organisations and implementation team, this will help to understand better how to access the entity.
The text was updated successfully, but these errors were encountered: