Actions
Task #2892
closedAdd config property to choose which userType should be managed
Start date:
07/16/2021
Due date:
% Done:
100%
Estimated time:
Owner:
Description
In Azure AD, there are two types of users:
- Member
- Guest
In case you want to manage both types the config property should remain empty (default behavior)
If you want to manage only one type, then you should use the values Member or Guest
This will be mainly used in get operation. e.g. https://graph.microsoft.com/v1.0/users?$select=userPrincipalName,userType&$filter=userType eq 'Guest'
It will be maybe used in other operation to but only if it make sense.
Updated by Roman Kučera over 3 years ago
- % Done changed from 0 to 60
Implemented config property.
Now it's only used for operation get all account (used for sync).
Other operations, are not using this option.
Updated by Roman Kučera over 3 years ago
- % Done changed from 60 to 80
Teste:
- Sync all types
- Sync only Members
- Sync only Guest
implemented in https://github.com/bcvsolutions/ms-graph-api-connector/commit/d24ff8beb94314246974810f8446fe7c0324d85e
Actions