Implied Groups
Implied Groups is a Launcher feature that supports inclusion of additional layout groups.
Last updated
Implied Groups is a Launcher feature that supports inclusion of additional layout groups.
Last updated
During login, Launcher can look for certain characteristics associated with a user such as being part of a specific group or having certain attributes assigned to them. These are selected from the user’s session object and validated using regular expressions. If there is a match, Launcher will include the corresponding layout associated with the implied group name.
Implied Groups is a Launcher feature that creates layouts that users can access based on their session object. For example, you can create a layout that only contains links to applications that are used by a specific group of users. Or, you can create a layout that only contains information that is relevant to a specific location.
Define the group and criteria in the configuration.
Create a list of layouts with the same name as the group.
Specify the criteria by identifying the attribute to evaluate for the group.
When a user logs in, Launcher will check the user's session object against the criteria.
If the user's session object matches the criteria, the corresponding layout group will be added to the Launcher.
To set up the Implied Groups feature for a particular device profile or device group, please follow the steps below:
You can determine the groups that can be assigned to a user by checking the user's session object against specific or conditions. An example configuration is shown below:
Examples:
If a user's session object contains the group "Blue" or "BLUE", the "ContainsBLUE_or_Blue_Group" layout group will be added to the Launcher.
If a user's session object contains a number in the "passwordExpiration" attribute, the "ContainsNumber_Group" layout group will be added to the Launcher.
If a user's session object contains a group "VTV" and the user is in Site 1133, the "VTV_1133_Group" layout group will be added to the Launcher.
If a user's session object contains a group "Managers", the "EndsWithManager_Group" layout group will be added to the Launcher.
When defining the criteria for an implied group, you can use the criteria_OR
and criteria_AND
operators, and specify multiple criteria objects:
criteria_OR
- will apply this group if any of the criteria objects match the patterns
criteria_AND
- will apply this group only if all the criteria objects match the patterns
In the above example, the Pilot_VTV_And_Managers
group gets applied when either of the conditions are true:
If group contains VTV
AND the current site is Pilot
If group contains Manager