+
+ def comment
+ @entry = DiaryEntry.find(params[:id])
+ @diary_comment = @entry.diary_comments.build(params[:diary_comment])
+ @diary_comment.user = @user
+ if @diary_comment.save
+ Notifier::deliver_diary_comment_notification(@diary_comment)
+ redirect_to :controller => 'diary_entry', :action => 'view', :display_name => @entry.user.display_name, :id => @entry.id
+ else
+ render :action => 'view'
+ end
+ end