Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export enum SubsetAccessEnum {
NOTHING = 'NOTHING',
// All my teams.
MATCH_TEAMS = 'MATCH_TEAMS',
// All the subordinates at the current date + myself.
MATCH_MANAGEES = 'MATCH_MANAGEES',
MATCH_MANAGEES_WITH_DATES = 'MATCH_MANAGEES_WITH_DATES',
MATCH_TEAMS_AND_MANAGEES = 'MATCH_TEAMS_AND_MANAGEES',
EVERYTHING = 'EVERYTHING',
// In my scope as an scoped admin.
IN_MY_SCOPE = 'IN_MY_SCOPE',
MINE = 'MINE',
// In my companies as a CSM.
IN_MY_COMPANIES = 'IN_MY_COMPANIES',
}
|