Setting Private Application Elements

In these use cases, instead of hiding elements from a set of users, we want to hide them from all users except a given set.

Imagine that we want the scenario "Sensitive Data" to only be visible to users with role MANAGER. This can be implemented by adding the following permission rules to the ruleset attached to the scenario:

EVERYBODY,     ACCESS, SCENARIO, false
role(MANAGER), ACCESS, SCENARIO, true

The first rule denies access to all users. The second, more specific rule, allows access to users with role MANAGER. As these rules are included in the ruleset attached to the scenario, they will only apply to this element.

All variations like the ones in the previous section on hiding elements can be replicated for private elements: a private task, a private workspace including its scenarios, a group of application elements of various types...