diff options
author | 2024-06-06 12:22:16 +0200 | |
---|---|---|
committer | 2024-06-06 11:22:16 +0100 | |
commit | 6f26b32ec3ed57ed3b04cba357abb9ee5060f229 (patch) | |
tree | 9d44758d64f6d9530c1ed04c1dd1a204105f2419 /docs/api | |
parent | [bugfix] concurrent map writes in dereferencer media processing maps (#2964) (diff) | |
download | gotosocial-6f26b32ec3ed57ed3b04cba357abb9ee5060f229.tar.xz |
[bugfix] Don't nil emojis + fields on blocked accounts (#2968)
* [bugfix] Don't nil emojis + fields on blocked accounts
* comment
* swagger
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/swagger.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index 050cf4c9b..5d93b33b1 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -223,7 +223,9 @@ definitions: type: string x-go-name: DisplayName emojis: - description: Array of custom emojis used in this account's note or display name. + description: |- + Array of custom emojis used in this account's note or display name. + Empty for blocked accounts. items: $ref: '#/definitions/emoji' type: array @@ -235,7 +237,9 @@ definitions: type: boolean x-go-name: EnableRSS fields: - description: Additional metadata attached to this account's profile. + description: |- + Additional metadata attached to this account's profile. + Empty for blocked accounts. items: $ref: '#/definitions/field' type: array |