* Add ability to export bookmarks * Add support for importing bookmarks * Add bookmark import tests * Add bookmarks export test
		
			
				
	
	
		
			20 lines
		
	
	
		
			300 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			300 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# 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
 |