-
Notifications
You must be signed in to change notification settings - Fork 11.3k
fix: companion oidc url #25572
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
fix: companion oidc url #25572
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
| const discovery = await AuthSession.fetchDiscoveryAsync( | ||
| `${this.config.calcomBaseUrl}/.well-known/openid_configuration` | ||
| ); | ||
| const discovery = await AuthSession.fetchDiscoveryAsync(this.config.calcomBaseUrl); |
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.
@volnei Why do we need to remove the extra URL segments?
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.
It's being included twice
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.
No issues found across 1 file
What does this PR do?
Summary by cubic
Fixed the OIDC discovery URL in the Companion OAuth service so the app passes the base Cal.com URL to AuthSession, restoring proper discovery and login flow across platforms.
Written for commit c336370. Summary will update automatically on new commits.