fix(backend): fix expose name mapping bug in AiPromptResponseDto causing HTTP 500
CI / CD Pipeline / build (push) Successful in 4m27s
CI / CD Pipeline / deploy (push) Failing after 5m18s

This commit is contained in:
2026-05-29 15:23:59 +07:00
parent 8b05f0f05c
commit 8367ced926
@@ -11,7 +11,7 @@ import { Expose } from 'class-transformer';
* โดยคัดกรองเฉพาะข้อมูลภายนอกและปิดบัง PK ดั้งเดิมตามนโยบายความปลอดภัย
*/
export class AiPromptResponseDto {
@Expose({ name: 'id' })
@Expose()
publicId!: string;
@Expose()