about summary refs log tree commit diff
path: root/app/services/reject_follow_service.rb
diff options
context:
space:
mode:
authorShel R <Yiskah.Raphen@gmail.com>2017-04-07 22:13:06 -0400
committerGitHub <noreply@github.com>2017-04-07 22:13:06 -0400
commitcf13c97cb2890d7bf51540f632cf725f89baefd9 (patch)
treed58925eed77815140c011bb70667fdc4b80173c5 /app/services/reject_follow_service.rb
parent65b3a2a5a6e3151cf4da89132326b796a5c0687a (diff)
parent90a408f5927956f0cbe9b81812daca7b4a92d807 (diff)
Merge branch 'master' into master
Diffstat (limited to 'app/services/reject_follow_service.rb')
-rw-r--r--app/services/reject_follow_service.rb27
1 files changed, 1 insertions, 26 deletions
diff --git a/app/services/reject_follow_service.rb b/app/services/reject_follow_service.rb
index 1b03d62e6..675007938 100644
--- a/app/services/reject_follow_service.rb
+++ b/app/services/reject_follow_service.rb
@@ -10,31 +10,6 @@ class RejectFollowService < BaseService
   private
 
   def build_xml(follow_request)
-    Nokogiri::XML::Builder.new do |xml|
-      entry(xml, true) do
-        unique_id xml, Time.now.utc, follow_request.id, 'FollowRequest'
-        title xml, "#{follow_request.target_account.acct} rejects follow request by #{follow_request.account.acct}"
-
-        author(xml) do
-          include_author xml, follow_request.target_account
-        end
-
-        object_type xml, :activity
-        verb xml, :reject
-
-        target(xml) do
-          author(xml) do
-            include_author xml, follow_request.account
-          end
-
-          object_type xml, :activity
-          verb xml, :request_friend
-
-          target(xml) do
-            include_author xml, follow_request.target_account
-          end
-        end
-      end
-    end.to_xml
+    AtomSerializer.render(AtomSerializer.new.reject_follow_request_salmon(follow_request))
   end
 end