Make more pages publicly accessible to logged out users.

* /artist_commentaries
* /note_versions
* /post_appeals
* /post_flags
* /posts/1/events
* /super_voters
This commit is contained in:
evazion
2016-10-17 04:53:09 -05:00
parent 7c6ba6a7c0
commit 7c8557dbac
6 changed files with 3 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
class ArtistCommentariesController < ApplicationController
respond_to :html, :xml, :json, :js
before_filter :member_only
before_filter :member_only, :except => [:index]
def index
@commentaries = ArtistCommentary.search(params[:search]).order("artist_commentaries.id desc").paginate(params[:page], :limit => params[:limit])