Lava Filters - IsFollowed
Category:Other
Description:Takes an entity object as input and tests if it is being followed by the current person. Returns a boolean value of either true or false.
Input:
Lava: {% assign group = 56 | GroupById %}
{% assign followed = group | IsFollowed %}
{% if followed == true %}
You are following the group {{ group.Name }}.
{% else %}
You are not currently following the group {{ group.Name }}.
{% endif %}
Output: You are following the group Serving Teams.