Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: add OAuth2 user settings page#12237

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
code-asher merged 5 commits intomainfromasher/oauth2-exchange-fe
Feb 21, 2024
Merged
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Remove deleted app check
This keeps running every time you revoke an application.  I guess therefresh is happening before the ID is set to undefined?  But I do notwant to unset it earlier because I want the dialog to stay open.  Fornow I will just remove this block.
  • Loading branch information
@code-asher
code-asher committedFeb 21, 2024
commitfd1e443da35c6259a1a50747eedc0f5915316853
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -18,14 +18,6 @@ const OAuth2ProviderPage: FC = () => {
(app) => app.id === appIdToRevoke,
);

// This can happen if the app disappears from the query data but a user has
// already started the revoke flow. It is safe to place this directly in the
// render, because it does not run every single time.
if (appToRevoke === undefined && typeof appIdToRevoke === "string") {
setAppIdToRevoke(undefined);
displayError("Application no longer exists.");
}

return (
<Section title="OAuth2 Applications" layout="fluid">
<OAuth2ProviderPageView
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp