-
Notifications
You must be signed in to change notification settings - Fork 25
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
OAuth integration #128
Merged
Merged
OAuth integration #128
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
76026e3
feat(login): login using oauth
matthieusieben cf37682
Various fixes linked to oauth
matthieusieben ed59541
style: various minor updates
matthieusieben 2b07e2b
fix(external-labelers): avoid un-necessary invalidation of queries
matthieusieben 93102bb
tidy
matthieusieben 72196d3
fix(oauth): adapt to latest client changes
matthieusieben b24adb2
feat(tabs): expose current view
matthieusieben a6e51d0
Merge remote-tracking branch 'origin/main' into oauth-matthieu
matthieusieben 99f27ce
fix: external labelers
matthieusieben a52ee6f
improve init time
matthieusieben b3be988
fix(repositories): list profiles using labeler instead of PDS
matthieusieben 7059cf2
style: remove un-necessary "encoding" param from api calls
matthieusieben 64ed75c
fix: rename import from @atproto/api
matthieusieben a6966a5
:rightwards_twisted_arrows: Merge with upstream
foysalit 7cae67c
:bug: Adjust for new oauth and atproto api package changes
foysalit 82594d8
:white_check_mark: Add manual wait
foysalit 1f830ac
:broom: Cleanup
foysalit cde9677
:twisted_rightwards_arrows: Merge with upstream
foysalit 664e531
:broom: Cleanup
foysalit 9043ba1
Adapt to latest SDK changes
matthieusieben bc8c2a7
fix definition of loopback client
matthieusieben 3b2ce66
Fix cleint_id and metadata
matthieusieben ad6137f
:bug: Fix initial setup sequence bugs
foysalit def67fd
:sparkles: Add feature flag for oauth login tab
foysalit efafeea
fix logout not happening error
matthieusieben 1079db0
Allow automatic hiding of tabs
matthieusieben b1161e8
wip: config
matthieusieben 42e224d
wip: auth
matthieusieben 2eb4791
Update components/shell/ConfigurationFlow.tsx
matthieusieben 0ab7fd4
Merge remote-tracking branch 'origin/main' into oauth-matthieu
matthieusieben 35e7f92
Update lib/client-config.ts
matthieusieben 8339284
Update lib/constants.ts
matthieusieben b97202d
Update cypress/support/api.ts
matthieusieben c45e715
add missing NEXT_PUBLIC_HANDLE_RESOLVER_URL in env config
matthieusieben d8e8d28
update dep
matthieusieben 7a3934d
code cleanup
matthieusieben 1e718b2
restore default OZONE_PUBLIC_URL for dev mode
matthieusieben d3944a4
remove dev OZONE_PUBLIC_URL
matthieusieben 82fa7df
fix local dev (yarn dev)
matthieusieben 1e8d436
Add compatibility with legacy credentials
matthieusieben b5dfbcd
adapt to main merge
matthieusieben 83243e8
:white_check_mark: Set correct fixture
foysalit 9c51f6a
:white_check_mark: set cypress env vars for github ci
foysalit 5425da0
:bug: Allow Only/Exclude/Indifferent filters for appeal status (#170)
foysalit b9e8fd8
Merge remote-tracking branch 'origin/main' into oauth-matthieu
matthieusieben 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
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.
doesn't existence of labelerUrl imply that doc exists? not clear why we need to check for
&& doc
here too?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.
This is solely for the purpose of making this work with
yarn dev
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.
with
dev-env
from atproto, there is no.well-known
file, so thegetOzoneMeta
results in a 404.I'm open to any other solution for this :-)