projects
/
rails.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove unused options argument from user_image_url
[rails.git]
/
app
/
controllers
/
notes_controller.rb
diff --git
a/app/controllers/notes_controller.rb
b/app/controllers/notes_controller.rb
index 4b4f3d6515f3698370e74d2c92cc96b779b642ac..fbeb01b76425b890f4b69dd603ddf96e255abf8c 100644
(file)
--- a/
app/controllers/notes_controller.rb
+++ b/
app/controllers/notes_controller.rb
@@
-40,6
+40,10
@@
class NotesController < ApplicationController
@note = Note.visible.find(params[:id])
@note_comments = @note.comments
end
@note = Note.visible.find(params[:id])
@note_comments = @note.comments
end
+
+ @note_includes_anonymous = @note.author.nil? || @note_comments.find { |comment| comment.author.nil? }
+
+ @note_comments = @note_comments.drop(1) if @note_comments.first&.event == "opened"
rescue ActiveRecord::RecordNotFound
render :template => "browse/not_found", :status => :not_found
end
rescue ActiveRecord::RecordNotFound
render :template => "browse/not_found", :status => :not_found
end