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