def mine
if params[:display_name]
if @this_user = User.active.find_by_display_name(params[:display_name])
- @title = t "note.mine.title", :user => @this_user.display_name
- @heading = t "note.mine.heading", :user => @this_user.display_name
+ @title = t "note.mine.title", :user => @this_user.display_name
+ @heading = t "note.mine.heading", :user => @this_user.display_name
@description = t "note.mine.subheading", :user => render_to_string(:partial => "user", :object => @this_user)
@page = (params[:page] || 1).to_i
@page_size = 10
- @notes = @this_user.notes.order("updated_at DESC, id").uniq.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).to_a
+ @notes = @this_user.notes
+ @notes = @notes.visible unless @user && @user.moderator?
+ @notes = @notes.order("updated_at DESC, id").uniq.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).to_a
else
@title = t "user.no_such_user.title"
@not_found_user = params[:display_name]
# utility functions below.
#------------------------------------------------------------
- ##
- # Render an OK response
- def render_ok
- if params[:format] == "js"
- render :text => "osbResponse();", :content_type => "text/javascript"
- else
- render :text => "ok " + @note.id.to_s + "\n", :content_type => "text/plain" if @note
- render :text => "ok\n", :content_type => "text/plain" unless @note
- end
- end
-
##
# Get the maximum number of results to return
def result_limit
comment = note.comments.create(attributes)
note.comments.map(&:author).uniq.each do |user|
- if notify && user && user != @user
+ if notify && user && user != @user && user.visible?
Notifier.note_comment_notification(comment, user).deliver_now
end
end