class BrowseController < ApplicationController
layout :map_layout
- before_filter :authorize_web
- before_filter :set_locale
- before_filter :except => [:query] { |c| c.check_database_readable(true) }
- before_filter :require_oauth
- around_filter :web_timeout
+ before_action :authorize_web
+ before_action :set_locale
+ before_action :except => [:query] { |c| c.check_database_readable(true) }
+ before_action :require_oauth
+ around_action :web_timeout
def relation
@type = "relation"
def note
@type = "note"
- @note = Note.find(params[:id])
+
+ if @user && @user.moderator?
+ @note = Note.find(params[:id])
+ @note_comments = @note.comments.unscope(:where => :visible)
+ else
+ @note = Note.visible.find(params[:id])
+ @note_comments = @note.comments
+ end
rescue ActiveRecord::RecordNotFound
render :action => "not_found", :status => :not_found
end