* Revert "[deploy] Revert removal of unneeded eager load (if needed) (#10179)" This reverts commit11c7b148da. * Revert "[deploy] Revert "Migrate ProfileImage to Images::Profile (#10055)" (#10149)" This reverts commit5657067e55.
18 lines
645 B
Ruby
18 lines
645 B
Ruby
json.status "created"
|
|
json.css @comment.custom_css
|
|
json.depth @comment.depth
|
|
json.url @comment.path
|
|
json.readable_publish_date @comment.readable_publish_date
|
|
json.published_timestamp @comment.decorate.published_timestamp
|
|
json.body_html @comment.processed_html
|
|
json.id @comment.id
|
|
json.id_code @comment.id_code_generated
|
|
json.newly_created true
|
|
json.user do
|
|
json.id current_user.id
|
|
json.username current_user.username
|
|
json.name current_user.name
|
|
json.profile_pic Images::Profile.call(current_user.profile_image_url, length: 50)
|
|
json.twitter_username current_user.twitter_username
|
|
json.github_username current_user.github_username
|
|
end
|