From 004548c9df867139f58cac90e3ad7429fbacbe05 Mon Sep 17 00:00:00 2001 From: tone Date: Wed, 24 Dec 2025 13:59:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=90=8E=E7=AB=AF=E5=8D=9A=E5=AE=A2?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=97=B6=EF=BC=8C=E6=B7=BB=E5=8A=A0updatedAt?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/backend/src/blog/blog.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/backend/src/blog/blog.service.ts b/apps/backend/src/blog/blog.service.ts index f16f101..0970d45 100644 --- a/apps/backend/src/blog/blog.service.ts +++ b/apps/backend/src/blog/blog.service.ts @@ -35,9 +35,10 @@ export class BlogService { return i; } - const { createdAt, deletedAt, id, title, viewCount, description } = i; + const { createdAt, updatedAt, deletedAt, id, title, viewCount, description } = i; return { createdAt, + updatedAt, deletedAt, id, title,