OpenAPI: Replace actor_id by account_id to follow ChatMessage schema

This commit is contained in:
Alibek Omarov 2020-07-26 13:54:56 +00:00
parent ce9647aed7
commit b31844d6e0
1 changed files with 3 additions and 3 deletions

View File

@ -300,11 +300,11 @@ def chat_messages_response do
"content" => "Check this out :firefox:", "content" => "Check this out :firefox:",
"id" => "13", "id" => "13",
"chat_id" => "1", "chat_id" => "1",
"actor_id" => "someflakeid", "account_id" => "someflakeid",
"unread" => false "unread" => false
}, },
%{ %{
"actor_id" => "someflakeid", "account_id" => "someflakeid",
"content" => "Whats' up?", "content" => "Whats' up?",
"id" => "12", "id" => "12",
"chat_id" => "1", "chat_id" => "1",
@ -337,7 +337,7 @@ def chat_message_create do
def mark_as_read do def mark_as_read do
%Schema{ %Schema{
title: "MarkAsReadRequest", title: "MarkAsReadRequest",Update chat_operation.ex
description: "POST body for marking a number of chat messages as read", description: "POST body for marking a number of chat messages as read",
type: :object, type: :object,
required: [:last_read_id], required: [:last_read_id],