[#394] User view (Twitter & Mastadon API): wrapped "tags" in "pleroma" map.

This commit is contained in:
Ivan Tashkinov 2018-12-06 22:26:25 +03:00
parent abbf347dc7
commit 7a2162bbcb
4 changed files with 14 additions and 8 deletions

View File

@ -59,8 +59,11 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
privacy: user_info.default_scope,
sensitive: false
},
# Pleroma extension
tags: user.tags
pleroma: %{
tags: user.tags
}
}
end

View File

@ -78,8 +78,11 @@ defmodule Pleroma.Web.TwitterAPI.UserView do
"default_scope" => user.info.default_scope,
"no_rich_text" => user.info.no_rich_text,
"fields" => fields,
# Pleroma extension
"tags" => user.tags
"pleroma" => %{
"tags" => user.tags
}
}
if assigns[:token] do

View File

@ -55,7 +55,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
privacy: "public",
sensitive: false
},
tags: []
pleroma: %{tags: []}
}
assert expected == AccountView.render("account.json", %{user: user})
@ -93,7 +93,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
privacy: "public",
sensitive: false
},
tags: []
pleroma: %{tags: []}
}
assert expected == AccountView.render("account.json", %{user: user})

View File

@ -97,7 +97,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
"default_scope" => "public",
"no_rich_text" => false,
"fields" => [],
"tags" => []
"pleroma" => %{"tags" => []}
}
assert represented == UserView.render("show.json", %{user: user})
@ -139,7 +139,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
"default_scope" => "public",
"no_rich_text" => false,
"fields" => [],
"tags" => []
"pleroma" => %{"tags" => []}
}
assert represented == UserView.render("show.json", %{user: user, for: follower})
@ -182,7 +182,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
"default_scope" => "public",
"no_rich_text" => false,
"fields" => [],
"tags" => []
"pleroma" => %{"tags" => []}
}
assert represented == UserView.render("show.json", %{user: follower, for: user})
@ -232,7 +232,7 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
"default_scope" => "public",
"no_rich_text" => false,
"fields" => [],
"tags" => []
"pleroma" => %{"tags" => []}
}
blocker = Repo.get(User, blocker.id)