From 801d90d1074e79426697fd34a7b583bf2ac266b5 Mon Sep 17 00:00:00 2001 From: wolfg Date: Fri, 7 Apr 2023 19:58:38 +0800 Subject: [PATCH] fix(route): add description field to /instructables/projects (#12255) --- lib/v2/instructables/projects.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/v2/instructables/projects.js b/lib/v2/instructables/projects.js index db2ebeffbb..1f56cdec37 100644 --- a/lib/v2/instructables/projects.js +++ b/lib/v2/instructables/projects.js @@ -48,6 +48,7 @@ module.exports = async (ctx) => { title: item.document.title, link: `https://${siteDomain}/${item.document.urlString}`, author: item.document.screenName, + description: ``, pubDate: new Date(item.document.publishDate).toUTCString(), category: item.document.primaryClassification, })),