diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 22:15:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 22:15:55 -0400 |
commit | 1b42f717f2c44bb0c85dfc8e8b40790b12d45993 (patch) | |
tree | 852b1ccaeb7c5eeae530c66eb1a97462b2dd7831 /app/services/unblock_service.rb | |
parent | eb98c99924ab810eea8a97040a82308f68c805cc (diff) | |
parent | 7004c692040d9372c187a13a21f1215f07d3a8ff (diff) |
Merge branch 'master' into master
Diffstat (limited to 'app/services/unblock_service.rb')
-rw-r--r-- | app/services/unblock_service.rb | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/app/services/unblock_service.rb b/app/services/unblock_service.rb index c4f789f74..3a3fd2d8c 100644 --- a/app/services/unblock_service.rb +++ b/app/services/unblock_service.rb @@ -11,22 +11,6 @@ class UnblockService < BaseService private def build_xml(block) - Nokogiri::XML::Builder.new do |xml| - entry(xml, true) do - unique_id xml, Time.now.utc, block.id, 'Block' - title xml, "#{block.account.acct} no longer blocks #{block.target_account.acct}" - - author(xml) do - include_author xml, block.account - end - - object_type xml, :activity - verb xml, :unblock - - target(xml) do - include_author xml, block.target_account - end - end - end.to_xml + AtomSerializer.render(AtomSerializer.new.unblock_salmon(block)) end end |