about summary refs log tree commit diff
path: root/app/controllers/settings/exports/bookmarks_controller.rb
blob: c12e2f147ac0cf73d9c75923efc8a07caf530133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Settings
  module Exports
    class BookmarksController < BaseController
      include ExportControllerConcern

      def index
        send_export_file
      end

      private

      def export_data
        @export.to_bookmarks_csv
      end
    end
  end
end