From fa52893e064a2d8746afb73399f19377dd59f685 Mon Sep 17 00:00:00 2001 From: AirboZH Date: Wed, 11 Oct 2023 18:32:33 +0800 Subject: [PATCH] docs: update ContributorVo (halo-dev/halo#4705) (#263) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /kind documentation link: https://github.com/halo-dev/halo/pull/4705 ```release-note 更新 ContributorVo 格式 ``` --- docs/developer-guide/theme/vo/ContributorVo.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/developer-guide/theme/vo/ContributorVo.md b/docs/developer-guide/theme/vo/ContributorVo.md index 1df7a6a..92ea4a8 100644 --- a/docs/developer-guide/theme/vo/ContributorVo.md +++ b/docs/developer-guide/theme/vo/ContributorVo.md @@ -4,6 +4,16 @@ "displayName": "string", // 显示名称 "avatar": "string", // 头像 "bio": "string", // 描述 - "permalink": "string" // 作者的文章归档页面链接 + "permalink": "string", // 作者的文章归档页面链接 + "metadata": { + "name": "string", // 唯一标识 + "labels": { + "additionalProp1": "string" + }, + "annotations": { + "additionalProp1": "string" + }, + "creationTimestamp": "2022-11-20T13:06:38.512Z", // 创建时间 + } } ```