diff options
author | rinpatch <rinpatch@sdf.org> | 2020-07-26 16:38:57 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-07-26 16:38:57 +0000 |
commit | a7616dec8c43309975cbdfcdd6a1808b56aa66e6 (patch) | |
tree | 5c7da0d47b05992a8f1d5bc3ca363f69a799c3af | |
parent | ce9647aed786368536057492604e8ec99cd7aee2 (diff) | |
parent | 6107440ea0da3a9e59576a86a9dab50acd83936e (diff) | |
download | pleroma-a7616dec8c43309975cbdfcdd6a1808b56aa66e6.tar.gz |
Merge branch 'patch-3' into 'develop'
OpenAPI: Replace actor_id by account_id to follow ChatMessage schema
See merge request pleroma/pleroma!2797
-rw-r--r-- | lib/pleroma/web/api_spec/operations/chat_operation.ex | 4 |
1 files changed, 2 insertions, 2 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..b1a0d26ab 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", |