| 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 |
|