Merge branch 'fix/chats-no-unread-in-openapi' into 'develop'
authorrinpatch <rin@patch.cx>
Thu, 18 Feb 2021 09:54:59 +0000 (09:54 +0000)
committerrinpatch <rin@patch.cx>
Thu, 18 Feb 2021 09:54:59 +0000 (09:54 +0000)
ChatMessage schema: Add `unread` property

See merge request pleroma/pleroma!3323

lib/pleroma/web/api_spec/schemas/chat_message.ex

index 6986b9c17b722a7cd7b7cab327dd1a0887ca1042..348fe95f88101ba855061dda4e4d2a6203cdefe7 100644 (file)
@@ -52,7 +52,8 @@ defmodule Pleroma.Web.ApiSpec.Schemas.ChatMessage do
           title: %Schema{type: :string, description: "Title of linked resource"},
           description: %Schema{type: :string, description: "Description of preview"}
         }
-      }
+      },
+      unread: %Schema{type: :boolean, description: "Whether a message has been marked as read."}
     },
     example: %{
       "account_id" => "someflakeid",
@@ -69,7 +70,8 @@ defmodule Pleroma.Web.ApiSpec.Schemas.ChatMessage do
         }
       ],
       "id" => "14",
-      "attachment" => nil
+      "attachment" => nil,
+      "unread" => false
     }
   })
 end