Skip to content

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 21, 2024
Merged
Changes from 1 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
Prev Previous commit
Next Next commit
Update revoke endpoint again
Was changed last night.
  • Loading branch information
code-asher committed Feb 21, 2024
commit 12e1400772696cd7d2023dd4a320f9c15efd8271
2 changes: 1 addition & 1 deletion site/src/api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ export const deleteOAuth2ProviderAppSecret = async (
};

export const revokeOAuth2ProviderApp = async (appId: string): Promise<void> => {
await axios.delete(`/login/oauth2/tokens?client_id=${appId}`);
await axios.delete(`/oauth2/tokens?client_id=${appId}`);
};

export const getAuditLogs = async (
Expand Down