diff options
author | Hakaba Hitoyo <example@example.com> | 2018-01-30 19:26:07 +0900 |
---|---|---|
committer | Hakaba Hitoyo <example@example.com> | 2018-01-30 19:26:07 +0900 |
commit | b713b28dfdecb4a3f67550cd982be1450d774a81 (patch) | |
tree | ca01ae320f396ad75314873ddf1eee636fb68b80 /lib | |
parent | d49109ca17f980e118cd5ab97bc1139e3bd14402 (diff) | |
download | pleroma-b713b28dfdecb4a3f67550cd982be1450d774a81.tar.gz |
provide logo at feed.atom
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/ostatus/feed_representer.ex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pleroma/web/ostatus/feed_representer.ex b/lib/pleroma/web/ostatus/feed_representer.ex index 08710f246..bda017534 100644 --- a/lib/pleroma/web/ostatus/feed_representer.ex +++ b/lib/pleroma/web/ostatus/feed_representer.ex @@ -1,6 +1,8 @@ defmodule Pleroma.Web.OStatus.FeedRepresenter do alias Pleroma.Web.OStatus alias Pleroma.Web.OStatus.{UserRepresenter, ActivityRepresenter} + alias Pleroma.User + alias Pleroma.Web.MediaProxy def to_simple_form(user, activities, _users) do most_recent_update = (List.first(activities) || user).updated_at @@ -25,6 +27,7 @@ defmodule Pleroma.Web.OStatus.FeedRepresenter do {:id, h.(OStatus.feed_path(user))}, {:title, ['#{user.nickname}\'s timeline']}, {:updated, h.(most_recent_update)}, + {:logo, (User.avatar_url(user) |> MediaProxy.url())}, {:link, [rel: 'hub', href: h.(OStatus.pubsub_path(user))], []}, {:link, [rel: 'salmon', href: h.(OStatus.salmon_path(user))], []}, {:link, [rel: 'self', href: h.(OStatus.feed_path(user)), type: 'application/atom+xml'], []}, |