mirror of https://github.com/mastodon/mastodon
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
619 B
Ruby
34 lines
619 B
Ruby
8 years ago
|
# frozen_string_literal: true
|
||
|
|
||
1 year ago
|
module Settings::ExportControllerConcern
|
||
8 years ago
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
before_action :authenticate_user!
|
||
|
before_action :load_export
|
||
5 years ago
|
|
||
1 year ago
|
skip_before_action :check_self_destruct!
|
||
5 years ago
|
skip_before_action :require_functional!
|
||
8 years ago
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def load_export
|
||
|
@export = Export.new(current_account)
|
||
|
end
|
||
|
|
||
|
def send_export_file
|
||
|
respond_to do |format|
|
||
|
format.csv { send_data export_data, filename: export_filename }
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def export_data
|
||
|
raise 'Override in controller'
|
||
|
end
|
||
|
|
||
|
def export_filename
|
||
|
"#{controller_name}.csv"
|
||
|
end
|
||
|
end
|