diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 22:42:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 22:42:14 -0400 |
commit | c9f15f79913f3b79153fc0750c3eeafd26c26154 (patch) | |
tree | 97f2bc485412e4b4fb85151a785299e5f233f636 /app/services/favourite_service.rb | |
parent | 6a88151edaf34983385134d5930df8469692c207 (diff) | |
parent | 91afe1f8fd8ccc5ed086bb08f72a34eb484d3ba7 (diff) |
Merge branch 'master' into patch-1
Diffstat (limited to 'app/services/favourite_service.rb')
-rw-r--r-- | app/services/favourite_service.rb | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/app/services/favourite_service.rb b/app/services/favourite_service.rb index 5cc96403c..e92aada64 100644 --- a/app/services/favourite_service.rb +++ b/app/services/favourite_service.rb @@ -22,26 +22,6 @@ class FavouriteService < BaseService private def build_xml(favourite) - description = "#{favourite.account.acct} favourited a status by #{favourite.status.account.acct}" - - Nokogiri::XML::Builder.new do |xml| - entry(xml, true) do - unique_id xml, favourite.created_at, favourite.id, 'Favourite' - title xml, description - content xml, description - - author(xml) do - include_author xml, favourite.account - end - - object_type xml, :activity - verb xml, :favorite - in_reply_to xml, TagManager.instance.uri_for(favourite.status), TagManager.instance.url_for(favourite.status) - - target(xml) do - include_target xml, favourite.status - end - end - end.to_xml + AtomSerializer.render(AtomSerializer.new.favourite_salmon(favourite)) end end |