IsGlobal
The IsGlobal action checks if the current skill is triggered in the global context. The global context meant that the flow instance does not belong to a specific user Persona and the flow instance belongs to the flow itself.
The action returns a “t” if the current flow is global, otherwise it returns “” (should be used as a "bool" value inside an IF statement).
{{#if IsGlobal()}}
{{!Process Global Event}}
{{#else}}
{{!Process user-persona-specific Event}}
{{~/if}}
Updated 26 days ago