about summary refs log tree commit diff
path: root/app/controllers/admin/pubsubhubbub_controller.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-05-31 14:39:35 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-05-31 20:39:35 +0200
commitde4681b2be0b0efa1dede092445a53d4a593c140 (patch)
tree2b481f7ceef23f467dafaa4eba7e35db0559a42e /app/controllers/admin/pubsubhubbub_controller.rb
parenta132332b861f997540f30be1b90ade4648834b5b (diff)
Move admin/pubsubhubbub controller to admin/subscriptions (#3442)
Diffstat (limited to 'app/controllers/admin/pubsubhubbub_controller.rb')
-rw-r--r--app/controllers/admin/pubsubhubbub_controller.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/controllers/admin/pubsubhubbub_controller.rb b/app/controllers/admin/pubsubhubbub_controller.rb
deleted file mode 100644
index 2677a59e4..000000000
--- a/app/controllers/admin/pubsubhubbub_controller.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen_string_literal: true
-
-module Admin
-  class PubsubhubbubController < BaseController
-    def index
-      @subscriptions = Subscription.order(id: :desc).includes(:account).page(params[:page])
-    end
-  end
-end