about summary refs log blame commit diff
path: root/app/controllers/settings/exports/lists_controller.rb
blob: cf5a9de44b33bd3bd3c1cea91fbc4a79a345a9c1 (plain) (tree)

















                                                 
# frozen_string_literal: true

module Settings
  module Exports
    class ListsController < ApplicationController
      include ExportControllerConcern

      def index
        send_export_file
      end

      private

      def export_data
        @export.to_lists_csv
      end
    end
  end
end