fix(mana-core-auth): remove non-existent id field from trusted client

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-30 18:28:51 +01:00
parent c949f5d02a
commit 744d0c9c61

View file

@ -327,14 +327,12 @@ export function createBetterAuth(databaseUrl: string) {
// These clients are considered first-party and don't need user consent
trustedClients: [
{
id: 'matrix-synapse-client',
clientId: 'matrix-synapse',
clientSecret: process.env.SYNAPSE_OIDC_CLIENT_SECRET || '',
name: 'Matrix Synapse',
icon: undefined,
metadata: {},
type: 'web',
disabled: false,
metadata: {},
redirectUrls: ['https://matrix.mana.how/_synapse/client/oidc/callback'],
skipConsent: true,
},