diff options
author | lain <lain@soykaf.club> | 2020-07-10 10:37:42 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-07-10 10:37:42 +0000 |
commit | fba1ee7d7b04730c33cadb036f59e8d7c90a93b0 (patch) | |
tree | 32b20b5a0ec3f5c8d44f1157087868adfaa549b0 /test/web/mastodon_api/views | |
parent | 8aa7143f464562ca2a0572087c526f26d1a3b7ef (diff) | |
parent | b39eb6ecc573c310801fe49f35d92246ddcb6226 (diff) | |
download | pleroma-fba1ee7d7b04730c33cadb036f59e8d7c90a93b0.tar.gz pleroma-fba1ee7d7b04730c33cadb036f59e8d7c90a93b0.zip |
Merge branch 'chat-federation-information' into 'develop'
Add an `accepts_chat_messages` to user, expose in api and federation
See merge request pleroma/pleroma!2716
Diffstat (limited to 'test/web/mastodon_api/views')
-rw-r--r-- | test/web/mastodon_api/views/account_view_test.exs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs index f5bfc9c67..17f035add 100644 --- a/test/web/mastodon_api/views/account_view_test.exs +++ b/test/web/mastodon_api/views/account_view_test.exs @@ -90,7 +90,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do hide_followers_count: false, hide_follows_count: false, relationship: %{}, - skip_thread_containment: false + skip_thread_containment: false, + accepts_chat_messages: nil } } @@ -186,7 +187,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do hide_followers_count: false, hide_follows_count: false, relationship: %{}, - skip_thread_containment: false + skip_thread_containment: false, + accepts_chat_messages: nil } } |