about summary refs log tree commit diff
path: root/app/controllers/settings/exports/base_controller.rb
blob: c082ed806c44018348c73f99841a452fe9bcb2f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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