##// END OF EJS Templates
Preload issue relations when exporting issues to CSV with all columns (#16091)....
Jean-Philippe Lang -
r12635:15c85ededd94
parent child
Show More
@@ -62,6 +62,9 class IssuesController < ApplicationController
62 62 case params[:format]
63 63 when 'csv', 'pdf'
64 64 @limit = Setting.issues_export_limit.to_i
65 if params[:columns] == 'all'
66 @query.column_names = @query.available_inline_columns.map(&:name)
67 end
65 68 when 'atom'
66 69 @limit = Setting.feeds_limit.to_i
67 70 when 'xml', 'json'
General Comments 0
You need to be logged in to leave comments. Login now