feat: 实现通行证注册登录

This commit is contained in:
2025-12-18 15:59:25 +08:00
parent 653abe12cc
commit cc3b4d4930
5 changed files with 339 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
import { IsString } from "class-validator";
export class PasskeyRegisterDto {
credentialResponse: any;
@IsString({ message: '通行证名称只能是字符串' })
name: string;
}