From f5209c7fb90baa1309853972304373abbd70daea Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 6 Jul 2017 19:22:57 -0500 Subject: [PATCH] /favorites: make available to anonymous users. --- app/controllers/favorites_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/favorites_controller.rb b/app/controllers/favorites_controller.rb index 2623cee9c..895b9c32e 100644 --- a/app/controllers/favorites_controller.rb +++ b/app/controllers/favorites_controller.rb @@ -1,5 +1,5 @@ class FavoritesController < ApplicationController - before_filter :member_only + before_filter :member_only, except: [:index] respond_to :html, :xml, :json skip_before_filter :api_check