fix: 后端修复通行证登录dto类型校验

This commit is contained in:
2025-12-18 22:40:42 +08:00
parent d8b8a190ec
commit 15bf790095

View File

@@ -1,3 +1,6 @@
import { IsObject } from "class-validator";
export class PasskeyLoginDto { export class PasskeyLoginDto {
@IsObject()
credentialResponse: any; credentialResponse: any;
} }