diff options
author | Alibek Omarov <a1ba.omarov@gmail.com> | 2020-07-26 13:54:56 +0000 |
---|---|---|
committer | Alibek Omarov <a1ba.omarov@gmail.com> | 2020-07-26 13:54:56 +0000 |
commit | b31844d6e01fc8bea4ecbe93b072846ca4309e88 (patch) | |
tree | 64e10e8f1dbcf370f5e631d18f42b8ee8a474146 | |
parent | ce9647aed786368536057492604e8ec99cd7aee2 (diff) | |
download | pleroma-b31844d6e01fc8bea4ecbe93b072846ca4309e88.tar.gz |
OpenAPI: Replace actor_id by account_id to follow ChatMessage schema
-rw-r--r-- | lib/pleroma/web/api_spec/operations/chat_operation.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pleroma/web/api_spec/operations/chat_operation.ex b/lib/pleroma/web/api_spec/operations/chat_operation.ex index cf299bfc2..1a5b05899 100644 --- a/lib/pleroma/web/api_spec/operations/chat_operation.ex +++ b/lib/pleroma/web/api_spec/operations/chat_operation.ex @@ -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], |