fix oauth

This commit is contained in:
lendry
2026-06-26 09:43:15 +03:00
parent c3b2eb4a50
commit dd4323ba51
7 changed files with 229 additions and 21 deletions

View File

@@ -773,7 +773,14 @@ export class AuthGrpcController {
}
@GrpcMethod('OAuthCoreService', 'Authorize')
authorize(command: { userId: string; clientId: string; redirectUri: string; scope: string; state?: string }) {
authorize(command: {
userId: string;
clientId: string;
redirectUri: string;
scope: string;
state?: string;
nonce?: string;
}) {
return this.oauthCore.authorize(command);
}