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 changeset
@type = "changeset"
@changeset = Changeset.find(params[:id])
- if @user && @user.moderator?
- @comments = @changeset.comments.unscope(:where => :visible).includes(:author)
- else
- @comments = @changeset.comments.includes(:author)
- end
+ @comments = if @user && @user.moderator?
+ @changeset.comments.unscope(:where => :visible).includes(:author)
+ else
+ @changeset.comments.includes(:author)
+ end
@node_pages, @nodes = paginate(:old_nodes, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "node_page")
@way_pages, @ways = paginate(:old_ways, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "way_page")
@relation_pages, @relations = paginate(:old_relations, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "relation_page")
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