Skip to content
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

Merged
merged 8 commits into from
May 19, 2020
Merged

Release 4.0.0 #102

merged 8 commits into from
May 19, 2020

Conversation

briskt
Copy link
Contributor

@briskt briskt commented May 18, 2020

Removed

  • Remove Insite ID Store adapter

Added

  • New config option for converting Workday fields into ID Broker 'groups'

forevermatt and others added 8 commits May 12, 2020 14:17
…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.
@briskt briskt requested review from fillup and forevermatt May 18, 2020 21:42
@briskt briskt merged commit 76a0e07 into master May 19, 2020
Copy link
Contributor

@forevermatt forevermatt left a 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 ?? '']);
Copy link
Contributor

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] ?? ''

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants