You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi everybody,
I want to hide the web-item based on the validating current user roles against a set of predefined roles.
I have pushed the predefined roles into app properties like
Key:"1",
"value":{"roles":["Administrators"]}
Added below condition to web-item while adding it using dynamic modules API
"conditions":[
{ "condition": "entity_property_contains_any_user_role",
"params": { "entity": "app",
"propertyKey": key.toString(),
"objectName": "role"
}
}
]
I app property and web-item got added successfully but the web-item is not showing for the user who has Administrators roles also. I tried with condition:"entity_property_contains_any_user_group" facing same issue.
The issue is it's not showing for all users irrespective of its role/permission.
Please help on the above issue?