cancel
Showing results for 
Search instead for 
Did you mean: 

Email Template (Problem to get the space permission)

tarl
Champ in-the-making
Champ in-the-making
hey!
I need some help to use the freemarker model to list the user who have a permission a particular space. But I have trouble to use the permission model:

<#list space.permissions?split(";") as perm >
   ${perm}
</#list>
space.permissions is not considered as a string so I don't know how to use it.

If anybody has an idea….
Thanks
Regards
1 REPLY 1

tarl
Champ in-the-making
Champ in-the-making
it works perfectly with that:
<#list space.permissions as perm >
   <#list perm?split(";") as permPart >
     ${permPart}
   </#list>
</#list>