Implement basic upload tags change report
This commit is contained in:
9
app/controllers/upload_tags_report_controller.rb
Normal file
9
app/controllers/upload_tags_report_controller.rb
Normal file
@@ -0,0 +1,9 @@
|
||||
class UploadTagsReportController < ApplicationController
|
||||
respond_to :html, :xml, :json
|
||||
|
||||
def show
|
||||
@user = User.find(params[:id])
|
||||
@upload_reports = UploadTagsReport.for_user(params[:id]).order("id desc").paginate(params[:page], :limit => params[:limit])
|
||||
respond_with(@upload_reports)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user