0
0
Fork 0

Remove exports/base controller in favor of shared concern (#3444)

This commit is contained in:
Matt Jankowski 2017-05-30 13:06:01 -04:00 committed by Eugen Rochko
parent 23081bb299
commit 0ebe7d6d23
6 changed files with 57 additions and 28 deletions

View file

@ -1,23 +0,0 @@
# frozen_string_literal: true
module Settings
module Exports
class BaseController < ApplicationController
before_action :authenticate_user!
def index
@export = Export.new(current_account)
respond_to do |format|
format.csv { send_data export_data, filename: export_filename }
end
end
private
def export_filename
"#{controller_name}.csv"
end
end
end
end

View file

@ -2,7 +2,13 @@
module Settings
module Exports
class BlockedAccountsController < BaseController
class BlockedAccountsController < ApplicationController
include ExportControllerConcern
def index
send_export_file
end
private
def export_data

View file

@ -2,7 +2,13 @@
module Settings
module Exports
class FollowingAccountsController < BaseController
class FollowingAccountsController < ApplicationController
include ExportControllerConcern
def index
send_export_file
end
private
def export_data

View file

@ -2,7 +2,13 @@
module Settings
module Exports
class MutedAccountsController < BaseController
class MutedAccountsController < ApplicationController
include ExportControllerConcern
def index
send_export_file
end
private
def export_data