Skip to content

Commit b5297ae

Browse files
committed
DOC-2578: The commentAuthor property is now included in reply events of the event log.
1 parent 728e153 commit b5297ae

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

modules/ROOT/pages/7.6.0-release-notes.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,15 @@ The {productname} {release-version} release includes an accompanying release of
7878

7979
**Comments** includes the following fixes and improvements.
8080

81+
==== The `commentAuthor` property is now included in reply events of the event log.
82+
// #TINY-11489
83+
84+
In previous versions of the tinycomments plugin, the `commentAuthor` property was missing from 'reply' events within the event log, which led to incomplete tracking of user interactions when retrieving data through the `+getEventLog()+` API.
85+
86+
{productname} {release-version} addresses this issue. Now, the `commentAuthor` property is included in 'reply' events in the event log.
87+
88+
For more information on the `getEventLog`, see xref:comments-commands-events-apis.adoc#getEventLog[getEventLog].
89+
8190
==== Allow mentions in comments dropdown to flow freely outside of the editor container
8291
// #TINY-11504
8392

modules/ROOT/partials/plugin-apis/comments-apis.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,17 @@ The `getEventLog` returns a log that contains information and timestamps of all
5656
----
5757
{
5858
"type": "reply",
59-
"timestamp": "2024-10-01T03:07:53.771Z",
60-
"conversationUid": "annotation-r1nn5xdo5ye",
61-
"commentUid": "annotation-uh00rb41kma",
59+
"timestamp": "2024-12-06T06:38:42.444Z",
60+
"conversationUid": "mce-conversation_16214546531733467122444",
61+
"commentUid": "mce-reply_70110186641733467132519",
6262
"conversationContext": "Welcome",
63-
"conversationContent": "new comment (Edit comment)",
64-
"conversationCreatedAt": "2024-10-01T03:07:53.771Z",
65-
"commentContent": "reply to existing comment",
63+
"conversationContent": "new comment",
64+
"conversationCreatedAt": "2024-12-06T06:38:42.444Z",
65+
"commentContent": "reply to comment",
66+
"commentAuthor": {
67+
"author": "DEMO USER",
68+
"authorName": "DEMO USER"
69+
},
6670
"conversationAuthor": {
6771
"author": "DEMO USER",
6872
"authorName": "DEMO USER"

0 commit comments

Comments
 (0)