about summary refs log tree commit diff
path: root/app/controllers/settings/exports/following_accounts_controller.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-11 16:00:43 -0400
committerEugen <eugen@zeonfederated.com>2017-04-11 22:00:43 +0200
commit3ddd936b039474259cff3793c767ecb7f74e89e0 (patch)
treedef84f4d35f11defaeb779049fec3f45998d9135 /app/controllers/settings/exports/following_accounts_controller.rb
parent1921c5416b08d8374ee7aee6c072eed9b67c58c8 (diff)
Refactor exports controller (#1567)
* Add basic coverage for settings/exports controller

* Remove unused @account variable from settings/exports controller

* Add coverage for download export actions

* Remove deprecated `render :text` in favor of `send_data` for csv downloads

* Add model to handle exports

* Use Export class in settings/exports controller

* Simplify settings/exports controller methods

* Move settings/export to more restful routes
Diffstat (limited to 'app/controllers/settings/exports/following_accounts_controller.rb')
-rw-r--r--app/controllers/settings/exports/following_accounts_controller.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/settings/exports/following_accounts_controller.rb b/app/controllers/settings/exports/following_accounts_controller.rb
new file mode 100644
index 000000000..a7f4344ca
--- /dev/null
+++ b/app/controllers/settings/exports/following_accounts_controller.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+module Settings
+  module Exports
+    class FollowingAccountsController < ApplicationController
+      before_action :authenticate_user!
+
+      def index
+        export_data = Export.new(current_account.following).to_csv
+
+        respond_to do |format|
+          format.csv { send_data export_data, filename: 'following.csv' }
+        end
+      end
+    end
+  end
+end