diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 21:54:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 21:54:32 -0400 |
commit | 7b7bff04df135aa76329696fbbceee9b80a70645 (patch) | |
tree | a535a961e2af14bdc013274717b8098516cfee64 /app/services/unfollow_service.rb | |
parent | a31f5765afb2598937b418cce0b5bacdf71c5ba8 (diff) | |
parent | e6596087977516270c8a805db962eb8b06e99d96 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'app/services/unfollow_service.rb')
-rw-r--r-- | app/services/unfollow_service.rb | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/app/services/unfollow_service.rb b/app/services/unfollow_service.rb index 3440da364..244c9b529 100644 --- a/app/services/unfollow_service.rb +++ b/app/services/unfollow_service.rb @@ -13,25 +13,6 @@ class UnfollowService < BaseService private def build_xml(follow) - description = "#{follow.account.acct} is no longer following #{follow.target_account.acct}" - - Nokogiri::XML::Builder.new do |xml| - entry(xml, true) do - unique_id xml, Time.now.utc, follow.id, 'Follow' - title xml, description - content xml, description - - author(xml) do - include_author xml, follow.account - end - - object_type xml, :activity - verb xml, :unfollow - - target(xml) do - include_author xml, follow.target_account - end - end - end.to_xml + AtomSerializer.render(AtomSerializer.new.unfollow_salmon(follow)) end end |