-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 4.0.0 #102
Release 4.0.0 #102
Conversation
…upport Remove Insite ID Store adapter and related tests
`groupsFields` is a comma-delimited list of Workday fields used to create the 'groups' field on the ID Broker. The content of each field is converted from space-delimited to comma-delimited and merged together to form the 'groups' field.
…config new Workday groups config option
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved, but with one question (that may or may not merit a bugfix release later).
$groups = []; | ||
foreach ($groupsFields as $groupsField) { | ||
if (strlen($user[$groupsField]) > 0) { | ||
$groupsSubList = explode(' ', $user[$groupsField ?? '']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I probably should have noticed this earlier, but why the use of ??
here?
$user[$groupsField ?? '']
Did you intend to do this instead?
$user[$groupsField] ?? ''
Removed
Added