You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Referring to the work done in branch comment_threads:
Currently, comments look like this upon being returned:
{
"id": "SOME_MASKED_ID",
"parent_comments": [
"SOME_MASKED_ID",
"SOME_MASKED_ID"
],
"parent_post": "SOME_MASKED_ID",
"text": "Hello, this is a comment.",
"replies": 0,
"children": [],
"votes": {
"up": 8,
"down": 2
}
},
They should be changed to include an additional field, username, that shows who created the comment. This is because comments are public while posts (confessions) are anonymous.
The text was updated successfully, but these errors were encountered:
Referring to the work done in branch
comment_threads
:Currently, comments look like this upon being returned:
They should be changed to include an additional field,
username
, that shows who created the comment. This is because comments are public while posts (confessions) are anonymous.The text was updated successfully, but these errors were encountered: