I have a necessity to create a project that can be started from either a technician or a consumer, so they will be two different actors. How to do this?
Create an actor filter that does
if (actor === 'technician' || actor === 'consumer'){
return true;}
else{
return false;
}
or
Create an organizational group that contains both technicians and consumers and then use this in your actor filter.
regards
Seán
PS: If this reply answers your question, please mark as resolved.
Works fine, thank you.