PluginProbe
WP Discourse / trunk
WP Discourse vtrunk
2.6.4 2.6.3 1.2.1 1.2.2 1.2.5 1.2.6 1.2.7 1.2.8 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.85 1.4.0 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 All 150 releases
wp-discourse / blocks / comments / src / edit / comments.js

comments.js in WP Discourse trunk, at blocks/comments/src/edit/comments.js

50 lines 942 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export default {
2 id: 11,
3 category_id: 1,
4 posts_count: 3,
5 filtered_posts_count: 3,
6 posts: [
7 {
8 id: 15,
9 name: 'Andrew Jones',
10 username: 'andrew',
11 created_at: '2021-10-17T11:34:18.156Z',
12 cooked: "<p>Thanks for posting this, I'm interested to hear what other folks think.</p>",
13 post_number: 2,
14 },
15 {
16 id: 16,
17 name: 'Beth Smith',
18 username: 'beth',
19 created_at: '2021-10-17T11:34:53.978Z',
20 cooked: "<p>Great post Cathy! I'll let you know how I go.</p>",
21 post_number: 3,
22 },
23 {
24 id: 17,
25 name: 'Cathy Roberts',
26 username: 'cathy',
27 created_at: '2021-10-17T11:34:53.978Z',
28 cooked: '<p>Thanks guys! Positive feedback is always appreciated.</p>',
29 post_number: 4,
30 },
31 ],
32 participants: [
33 {
34 id: 1,
35 username: 'andrew',
36 name: 'Andrew Jones',
37 },
38 {
39 id: 2,
40 username: 'beth',
41 name: 'Beth Smith',
42 },
43 {
44 id: 3,
45 username: 'cathy',
46 name: 'Cathy Roberts',
47 },
48 ],
49 };
50