-
Notifications
You must be signed in to change notification settings - Fork 166
Add IAL and AAL to token response #7782
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
Merged
Jeremy1026
merged 26 commits into
main
from
jcurcio/lg-8704-add-ial-and-aal-to-userinfo-response
Feb 16, 2023
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
832d0ff
[skip changelog]
Jeremy1026 d3ff5d1
[skip changelog]
Jeremy1026 0abe32f
changelog: additional clean up
Jeremy1026 c6913ad
changelog: Improvements, OpenID Connect Add ial and aal to userinfo r…
Jeremy1026 b906b7d
Use the existing constants
Jeremy1026 55e954b
Merge branch 'main' into jcurcio/lg-8704-add-ial-and-aal-to-userinfo-…
Jeremy1026 d4bbc41
Add default AAL value
Jeremy1026 8b221f3
With default values, don’t need to verify presence
Jeremy1026 780be4f
Lint cleanup
Jeremy1026 0348f5c
does need a blank line
Jeremy1026 0a51dbf
Update spec to expect URL instead of int
Jeremy1026 de0e998
Add feature flag for IAL and AAL in OIDC response
Jeremy1026 55b48bf
Merge branch 'main' into jcurcio/lg-8704-add-ial-and-aal-to-userinfo-…
Jeremy1026 eaf1d0f
Clean ups
Jeremy1026 a58da23
Remove feature flag gating
Jeremy1026 a206e15
Remove migration
Jeremy1026 a2cb484
If nil, use default
Jeremy1026 b8617b1
Shorten the line length for lint
Jeremy1026 bef3710
Revert schema from my local, un-merged migration
Jeremy1026 5c2ae1f
move default to openid_connect_authorize_form
Jeremy1026 023a7e4
Rework for lint
Jeremy1026 09f76ed
Remove extra line
Jeremy1026 031d5b8
Add tests for ial and aal in userinfo
Jeremy1026 381629b
Add specs for defaul aal and aal+ial in same acr
Jeremy1026 96af05d
Shorten lines to make lint :)
Jeremy1026 ae573b6
Another lint fix
Jeremy1026 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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.
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.
suggestion: I don't think we need to test for this since we don't support it
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.
Actually, this should probably be replaced with a test for the default AAL specification instead of AAL1
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.
Is there any harm in keeping checking 1? A couple extra cycles, and an extra second per test run?
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.
nah not really, other than the setup where you modify the allowed aal values feeling a bit weird to me. Either way is fine by me!