Report generation. Download csv
This commit is contained in:
17
app/controllers/admin/comments_controller.rb
Normal file
17
app/controllers/admin/comments_controller.rb
Normal file
@@ -0,0 +1,17 @@
|
||||
class Admin::CommentsController < Admin::BaseController
|
||||
|
||||
include DownloadSettingsHelper
|
||||
|
||||
def index
|
||||
@comments = Comment.sort_by_newest.page(params[:page])
|
||||
|
||||
respond_to do |format|
|
||||
format.html
|
||||
format.csv {send_data to_csv(Comment.sort_by_newest, Comment),
|
||||
type: "text/csv",
|
||||
disposition: "attachment",
|
||||
filename: "comments.csv" }
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user