mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 14:46:42 +02:00
docs(auth): add Matrix SSO integration documentation
- Document OIDC endpoints and authentication flow - Add Synapse configuration examples - Include troubleshooting guide - Remove debug logging from OIDC handlers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
1fcd5de8f3
commit
b150a16497
3 changed files with 192 additions and 15 deletions
|
|
@ -129,10 +129,8 @@ export class OidcController {
|
|||
* Handle OIDC request by forwarding to Better Auth
|
||||
*/
|
||||
private async handleOidcRequest(req: Request, res: Response) {
|
||||
console.log('[OIDC Controller] Handling request:', req.method, req.originalUrl);
|
||||
try {
|
||||
const response = await this.betterAuthService.handleOidcRequest(req);
|
||||
console.log('[OIDC Controller] Better Auth response status:', response.status);
|
||||
|
||||
// Set status code
|
||||
res.status(response.status || HttpStatus.OK);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue