forked from AkkomaGang/akkoma
OpenAPI: Replace actor_id by account_id to follow ChatMessage schema
This commit is contained in:
parent
ce9647aed7
commit
b31844d6e0
1 changed files with 3 additions and 3 deletions
|
@ -300,11 +300,11 @@ def chat_messages_response do
|
|||
"content" => "Check this out :firefox:",
|
||||
"id" => "13",
|
||||
"chat_id" => "1",
|
||||
"actor_id" => "someflakeid",
|
||||
"account_id" => "someflakeid",
|
||||
"unread" => false
|
||||
},
|
||||
%{
|
||||
"actor_id" => "someflakeid",
|
||||
"account_id" => "someflakeid",
|
||||
"content" => "Whats' up?",
|
||||
"id" => "12",
|
||||
"chat_id" => "1",
|
||||
|
@ -337,7 +337,7 @@ def chat_message_create do
|
|||
|
||||
def mark_as_read do
|
||||
%Schema{
|
||||
title: "MarkAsReadRequest",
|
||||
title: "MarkAsReadRequest",Update chat_operation.ex
|
||||
description: "POST body for marking a number of chat messages as read",
|
||||
type: :object,
|
||||
required: [:last_read_id],
|
||||
|
|
Loading…
Reference in a new issue