-
Notifications
You must be signed in to change notification settings - Fork 27
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
Add composable middleware #164
Merged
Merged
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
a8503dc
Added tests and made a start to auth.ts
PaulAsjes ecd3173
Add tests for cookie and callback route
PaulAsjes 60f70f8
Tests for session and actions
PaulAsjes 0c55d70
Add jsdom tests for tsx files
PaulAsjes 47aee50
Add new workflow
PaulAsjes 10d2004
Clean up jest config file
PaulAsjes ff50e18
Didn't mean to add this
PaulAsjes 77393b9
Add jest config and setup scripts to ts exclude
PaulAsjes 33559b0
Impersonation shouldn't be a client component for now
PaulAsjes 72f1c2e
100% test coverage
PaulAsjes 27a5a1e
Add debug flag
PaulAsjes 3b568af
Add another test and change coverage engine to have local and github …
PaulAsjes 05abae4
Should actually add the test
PaulAsjes df7ced3
Address feedback
PaulAsjes 2656a76
Also run prettier on test files
PaulAsjes 3e6968f
Merge remote-tracking branch 'origin/main' into pma/composable-middle…
PaulAsjes 0399fcc
wip
PaulAsjes 851ac7a
wip
PaulAsjes 142ecca
Merge remote-tracking branch 'origin/main' into pma/composable-middle…
PaulAsjes f05af89
Add tests
PaulAsjes a42594c
Delete getSession in favor of authkit method
PaulAsjes bae11b8
Restore package-lock.json
PaulAsjes 61f9127
Flip debug back to false
PaulAsjes cfacbcc
Remove deprecated tests and update readme
PaulAsjes 7b27eb5
Make options object optional and fix tests
PaulAsjes 46a857d
Merge remote-tracking branch 'origin/main' into pma/composable-middle…
PaulAsjes 159f118
Update tests
PaulAsjes dd9143e
Merge remote-tracking branch 'origin/main' into pma/composable-middle…
PaulAsjes 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 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 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 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 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
Oops, something went wrong.
Oops, something went wrong.
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.
Next always stores its cookies in the format
so changed this to reflect what next actually does.