Filtering
Overview
User Guide
Feature Configuration
"intents" : {
"login" : [
// Start an app on login for users with at least one of two IdP groups:
{
"package": "com.application.inventory",
"flags": 1,
"typeIntent": "a",
"filter": {
"session.groups": "SalesAssociate|Receiving"
}
},
// Disable an app on login at three sites:
{
"action": "DISABLE",
"typeIntent": "p",
"package" : "com.some.package"
"filter": {
"session.location": "1001|9309|4146"
}
}
],
"logout": [
// Clear browser app caches on logout for one particular device:
{
"action": "CLEARCACHE",
"package": "com.bluefletch.ems.browser",
"typeIntent": "p",
"filter": {
"config.ex.deviceId": "24000XXX39526"
}
}
]
}Last updated