Add banner image to user json.

This commit is contained in:
lain 2018-02-22 08:24:18 +01:00
parent 37e406ae36
commit c443aec83d
1 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,10 @@ defmodule Pleroma.Web.ActivityPub.UserView do
"icon" => %{
"type" => "Image",
"url" => User.avatar_url(user)
},
"image" => %{
"type" => "Image",
"url" => User.banner_url(user)
}
}
end