Ma/sso/SCIM front egg#36875
Open
mtabebe wants to merge 3 commits into
Open
Conversation
14b420b to
23ba456
Compare
The three group-sync dyncfgs (claim path + enable + strict) apply to any JWT-issuing authenticator, not just OIDC. Drop the `oidc_` prefix from the variable names and string keys to reflect that, so they can be shared with Frontegg (and any future JWT authenticators) without misleading naming. Pure mechanical rename; no behavior change.
Pull the dot-separated claim-path resolution and array/string normalization out of `mz-authenticator` into a shared helper. Consolidate the test suite into it Pure refactor; no behavior change.
Add `Claims::groups(claim_path)` to Frontegg (mirroring OIDC) Thread the resolved `group_claim` string through `authenticate` / `validate_access_token` / `exchange_app_password` and capture it into the session refresh task. Plumb the extracted groups through `ValidatedClaims`, `AuthSessionIdent`, and a new `AuthSessionHandle::groups()` accessor so the pgwire and HTTP frontends pass them into the existing group-role sync pipeline alongside the OIDC path. The frontegg-mock stamps user groups under the `groups` JWT claim
23ba456 to
287bee7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
3 commits to support group claims in front egg.
First 2 are mechanical renames and refactors. The third is the actual pushing of claims, and requires the most scrutiny.