/forum_posts/search: make available to anonymous users.

This commit is contained in:
evazion
2017-07-06 19:18:15 -05:00
parent 3a8cae4de1
commit 216243a354

View File

@@ -1,6 +1,6 @@
class ForumPostsController < ApplicationController
respond_to :html, :xml, :json, :js
before_filter :member_only, :except => [:index, :show]
before_filter :member_only, :except => [:index, :show, :search]
before_filter :load_post, :only => [:edit, :show, :update, :destroy, :undelete]
before_filter :check_min_level, :only => [:edit, :show, :update, :destroy, :undelete]
skip_before_filter :api_check