From e098abce5019f00152e6890c26b21ec176cb8a6c Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 23 Mar 2021 19:28:22 -0400 Subject: [PATCH] Adding saved_only to GetComments and GetPosts, fixing show_nsfw. --- src/assets/scripts/asyncapi.yaml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/assets/scripts/asyncapi.yaml b/src/assets/scripts/asyncapi.yaml index 4f5f518..d458b7a 100644 --- a/src/assets/scripts/asyncapi.yaml +++ b/src/assets/scripts/asyncapi.yaml @@ -1976,10 +1976,7 @@ components: community_id: $ref: "#/components/schemas/community_id" saved_only: - type: boolean - description: Forthcoming... - default: false - example: false + $ref: "#/components/schemas/saved_only" auth: $ref: "#/components/schemas/authStringSchema" saveUserSettingsResponse: @@ -3016,7 +3013,6 @@ components: required: - name - title - - nsfw - auth properties: name: @@ -3197,7 +3193,6 @@ components: required: - community_id - title - - nsfw - auth properties: community_id: @@ -4965,6 +4960,7 @@ components: required: - type_ - sort + - saved_only properties: type_: $ref: "#/components/schemas/type_listing" @@ -4978,6 +4974,8 @@ components: $ref: "#/components/schemas/community_id" community_name: $ref: "#/components/schemas/community_name" + saved_only: + $ref: "#/components/schemas/saved_only" auth: $ref: "#/components/schemas/authStringSchema" "matrix_user_id": @@ -5015,7 +5013,7 @@ components: example: 1 "nsfw": type: boolean - description: "Set to *true* if this commmunity, post or comment is deemed [NSFW](https://en.wikipedia.org/wiki/Not_safe_for_work) (hence invisble to users who have the NSFW option selected in their profile" + description: "Set to *true* if this commmunity, post or comment is deemed [NSFW](https://en.wikipedia.org/wiki/Not_safe_for_work) (hence invisble to users who have the NSFW option selected in their profile. If not provided, defaults to false." example: false "online": description: Number of registered users who are currently on the system @@ -5319,6 +5317,12 @@ components: *true* if this post or comment has been or should be saved on the user's profile type: boolean example: false + "saved_only": + description: |- + If *true*, only fetches the saved items. + type: boolean + default: false + example: false "score": type: number description: Forthcoming...