summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/pleroma/web/mastodon_api/views/account_view.ex7
-rw-r--r--test/web/mastodon_api/account_view_test.exs7
2 files changed, 12 insertions, 2 deletions
diff --git a/lib/pleroma/web/mastodon_api/views/account_view.ex b/lib/pleroma/web/mastodon_api/views/account_view.ex
index 68d930a68..ff02587d6 100644
--- a/lib/pleroma/web/mastodon_api/views/account_view.ex
+++ b/lib/pleroma/web/mastodon_api/views/account_view.ex
@@ -32,7 +32,12 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
avatar: image,
avatar_static: image,
header: header,
- header_static: header
+ header_static: header,
+ source: %{
+ note: "",
+ privacy: "public",
+ sensitive: "false"
+ }
}
end
diff --git a/test/web/mastodon_api/account_view_test.exs b/test/web/mastodon_api/account_view_test.exs
index 8a7727369..aa74ed966 100644
--- a/test/web/mastodon_api/account_view_test.exs
+++ b/test/web/mastodon_api/account_view_test.exs
@@ -22,7 +22,12 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
avatar: "https://placehold.it/48x48",
avatar_static: "https://placehold.it/48x48",
header: "https://placehold.it/700x335",
- header_static: "https://placehold.it/700x335"
+ header_static: "https://placehold.it/700x335",
+ source: %{
+ note: "",
+ privacy: "public",
+ sensitive: "false"
+ }
}
assert expected == AccountView.render("account.json", %{user: user})