From d786fc7a55cabc70ea35dfee283b7cd2ccf11e32 Mon Sep 17 00:00:00 2001 From: evazion Date: Fri, 7 Jul 2017 14:43:53 -0500 Subject: [PATCH] Removed unused UploadTagsReport controller (#3206). This was moved to ReportsController#upload_tags as of 7f22baa. --- app/controllers/upload_tags_report_controller.rb | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 app/controllers/upload_tags_report_controller.rb diff --git a/app/controllers/upload_tags_report_controller.rb b/app/controllers/upload_tags_report_controller.rb deleted file mode 100644 index a4235fb50..000000000 --- a/app/controllers/upload_tags_report_controller.rb +++ /dev/null @@ -1,9 +0,0 @@ -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