From bcf5e9085799b5f9564e804f3a0de512c4dcbaba Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Wed, 2 Oct 2019 01:50:31 +0000 Subject: [PATCH] add published_at to serve index article map --- api/serveindex.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/api/serveindex.mjs b/api/serveindex.mjs index bf4e743..4e5d46d 100644 --- a/api/serveindex.mjs +++ b/api/serveindex.mjs @@ -14,6 +14,7 @@ function mapArticle(x) { return { id: x.id, created_at: x.created_at, + published_at: x.published_at, path: x.path, description: x.description, name: x.name,