Add import/export feature for bookmarks (#14956)

* Add ability to export bookmarks

* Add support for importing bookmarks

* Add bookmark import tests

* Add bookmarks export test
このコミットが含まれているのは:
ThibG
2020-11-19 17:48:13 +01:00
committed by GitHub
コミット 96c1e71329
10個のファイルの変更147行の追加1行の削除

ファイルの表示

@ -0,0 +1,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