Merged
Conversation
The frontend was using /chat/authorize but the backend route is mounted at /chat/slack/authorize. This caused a 404 when initiating the Slack OAuth flow from either the config form or the configurations table. Co-authored-by: Cursor <cursoragent@cursor.com>
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
Co-authored-by: Cursor <cursoragent@cursor.com>
Contributor
Greptile SummaryFixed the Slack OAuth authorize URL path from
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: 21bdd7c |
thabofletcher
approved these changes
Feb 24, 2026
Contributor
thabofletcher
left a comment
There was a problem hiding this comment.
Thanks for the quick fix @galvana!
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description Of Changes
Fix the Slack OAuth authorize URL in the admin UI. The frontend was navigating to
/api/v1/plus/chat/authorizebut the backend route is mounted at/api/v1/plus/chat/slack/authorize, resulting in a 404 when users clicked "Authorize" to initiate the Slack OAuth flow.Code Changes
clients/admin-ui/src/features/chat-provider/forms/SlackChatForm.tsx- Fix authorize URL from/chat/authorizeto/chat/slack/authorize(with and without config_id)clients/admin-ui/src/features/chat-provider/ChatConfigurations.tsx- Fix authorize URL in the configurations table "Authorize" buttonSteps to Confirm
Pre-Merge Checklist
CHANGELOG.mdupdatedMade with Cursor