From d8f8983f94bc63d4044ad7a3e87d7bd52857af57 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 6 Jul 2017 19:16:03 -0500 Subject: [PATCH] /uploads/report_tags: make available to anonymous users. --- app/controllers/reports_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index afd255094..95478709b 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -1,5 +1,5 @@ class ReportsController < ApplicationController - before_filter :member_only + before_filter :member_only, :except => [:upload_tags] before_filter :gold_only, :only => [:similar_users] before_filter :moderator_only, :only => [:post_versions, :post_versions_create]