From 3a8cae4de10af1522b15bd35e49a0ff531934f71 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 6 Jul 2017 19:16:43 -0500 Subject: [PATCH] /notes/search: make available to anonymous users. --- app/controllers/notes_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index bed70f667..d4648a971 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -1,6 +1,6 @@ class NotesController < ApplicationController respond_to :html, :xml, :json, :js - before_filter :member_only, :except => [:index, :show] + before_filter :member_only, :except => [:index, :show, :search] def search end