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 @@ defmodule Pleroma.Web.ApiSpec.ChatOperation 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 @@ defmodule Pleroma.Web.ApiSpec.ChatOperation 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],