Ghost/ghost/core/test
Simon Backx 5235d67fed
Added comment events to activity feed (#15064)
refs https://github.com/TryGhost/Team/issues/1709

- New event type `comment_event` (comments and replies of a member in the activity feed)
- Includes member, post and parent relation by default
- Added new output mapper for ActivityFeed events

**Changes to `Comment` model:**
* **Only limit comment fetched to root comments when not authenticated as a user:** 
`enforcedFilters` is applied to all queries, which is a problem because for the activity feed we also need to fetch comments which have a parent_id that is not null (`Member x replied to a comment`). The current filter in the model is specifically for the members API, not the admin API (so checking the user should fix that, not sure if that is a good pattern but couldn’t find a better alternative).
* **Only set default relations for comments when withRelated is empty or not set:**
`defaultRelations`: Right now, for every fetch it would force all these relations. But we don’t need all those relations for the activity feed; So I updated the pattern to only set the default relations when it is empty (which we also do on a couple of other places and seems like a good pattern). I also updated the comments-ui frontend to not send ?include
2022-07-25 17:48:23 +02:00
..
e2e-api Added comment events to activity feed (#15064) 2022-07-25 17:48:23 +02:00
e2e-browser Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
e2e-frontend Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
e2e-server Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
e2e-webhooks Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
integration 🏗 Added jobs table creation migration 2022-07-22 23:32:58 +12:00
regression Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
unit Fixed minor linting issue in member-count tests 2022-07-25 11:25:14 +02:00
utils Added comment events to activity feed (#15064) 2022-07-25 17:48:23 +02:00
.eslintignore Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
.eslintrc.js Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00
.jshintrc Converted Ghost repo into a monorepo 2022-07-20 16:41:05 +02:00