Change Permissions Within a Page
Preparation
- Ensure you have created a permissions group for the members whose actions you want to restrict.
How to Hide Components
- Place a [Container].
- Place the components you want to restrict actions on inside the [Container].
- In the [Hidden] condition of the [Container], enter
{{ querierCurrentUser.groups.some(g => g.id === "<insert the relevant permissions group ID here>") }}
.
How to Disable Components
- Place the components you want to restrict actions on.
- In the [Disbled] of the components placed in step 1, enter
{{ querierCurrentUser.groups.some(g => g.id === "<insert the relevant permissions group ID here>") }}
.
Note: If the components you placed do not have a [Disable Condition] option, please try using the "How to Hide Components" method.