You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/app/views/graduation_topics/show_comment.json.jbuilder

11 lines
504 B

6 years ago
# 帖子信息
json.messages_count @messages_count
json.user_course_identity @user_course_identity
json.comments @messages do |message|
json.partial! "graduation_comments", locals: {message: message, current_user: @current_user, identity: @user_course_identity}
if @parent.nil?
json.children message.children(@page, 5) do |c_message|
json.partial! 'graduation_comments', locals: { message: c_message, current_user: @current_user, identity: @user_course_identity}
end
end
end