Browse Source

Merge branch 'patch-3' into 'develop'

OpenAPI: Replace actor_id by account_id to follow ChatMessage schema

See merge request pleroma/pleroma!2797
frontends/logic-flow
rinpatch 3 years ago
parent
commit
a7616dec8c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/pleroma/web/api_spec/operations/chat_operation.ex

+ 2
- 2
lib/pleroma/web/api_spec/operations/chat_operation.ex 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",


Loading…
Cancel
Save