-
Notifications
You must be signed in to change notification settings - Fork 23
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
Clean up and remove unused rules #438
Conversation
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.
Each commit looks good on its own. I would note that there isn't a specific test commit included in 'Rework the everyone group logic'; it's likely that's covered by an existing test where no changes are necessary.
groups = Array.from(new Set(groups)); | ||
user.groups = groups; | ||
user.app_metadata.groups = groups; | ||
auth0.users.updateAppMetadata(user.user_id, user.app_metadata) |
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 didn't mean to remove all of this part. I'll add part of it back in.
I'm re-requesting a review for this since I've made further cuts. These rules are currently applied to the Dev Auth0 tenant. |
This PR removes various unused rules and simplifies the
everyone
group logic. All prep work for IAM-1150.