From 0a574d72404f885e46e2a2783a24f129f5bfd3cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 15 May 2025 18:23:38 -0400 Subject: [PATCH 1/3] fix: group edit url --- src/views/admin/partials/manage_user_groups.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/admin/partials/manage_user_groups.tpl b/src/views/admin/partials/manage_user_groups.tpl index 5d686d730f..03804d8be9 100644 --- a/src/views/admin/partials/manage_user_groups.tpl +++ b/src/views/admin/partials/manage_user_groups.tpl @@ -4,7 +4,7 @@
{{{ each users.groups }}} {{{ end }}}
From 61a63851d4f26386494756c65c4385e09da61815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 15 May 2025 18:25:10 -0400 Subject: [PATCH 2/3] chore: up themes --- install/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/package.json b/install/package.json index 90f4f723ba..e6500e7908 100644 --- a/install/package.json +++ b/install/package.json @@ -107,10 +107,10 @@ "nodebb-plugin-spam-be-gone": "2.3.2", "nodebb-plugin-web-push": "0.7.4", "nodebb-rewards-essentials": "1.0.2", - "nodebb-theme-harmony": "2.1.12", + "nodebb-theme-harmony": "2.1.13", "nodebb-theme-lavender": "7.1.19", - "nodebb-theme-peace": "2.2.42", - "nodebb-theme-persona": "14.1.11", + "nodebb-theme-peace": "2.2.43", + "nodebb-theme-persona": "14.1.12", "nodebb-widget-essentials": "7.0.38", "nodemailer": "7.0.3", "nprogress": "0.2.0", From ce5ef1ab6e98c2c8e91735beab5eb6ee9fec6ca5 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 16 May 2025 10:04:39 -0400 Subject: [PATCH 3/3] fix: openapi schema to handle additional `attachments` field in postsobject --- public/openapi/components/schemas/PostsObject.yaml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/public/openapi/components/schemas/PostsObject.yaml b/public/openapi/components/schemas/PostsObject.yaml index b43d965888..5a079a08d9 100644 --- a/public/openapi/components/schemas/PostsObject.yaml +++ b/public/openapi/components/schemas/PostsObject.yaml @@ -2,4 +2,15 @@ PostsObject: description: One of the objects in the array returned from `Posts.getPostSummaryByPids` type: array items: - $ref: ./PostObject.yaml#/PostObject \ No newline at end of file + allOf: + - $ref: ./PostObject.yaml#/PostObject + - type: object + description: Optional properties that may or may not be present (except for `pid`, which is always present, and is only here as a hack to pass validation) + properties: + pid: + type: number + description: A post identifier + attachments: + type: array + required: + - pid \ No newline at end of file