-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add connector for Comments #5
Comments
Added |
@fjarrett Regarding 'Comment::Replied' action, would it be stored as a single record if a user replied to a comment, or would a 'Comment::Created' record be created as well ? I took the approach of not adding the 'Created' record in this scenario, hopefully it'd be mitigated by users ( or extensions 👍 ) querying the database. |
@fjarrett Actually the same thing happens with 'Comment::Approved' since some comments would get approved automatically on insertion, while others would not. I think this scenario requires an explicit second record for the approval action, to make it easy for users to query such actions, otherwise the query for approvals would need to check meta table for comment_approved meta field. Thoughts ? |
@fjarrett Final result:
Let me know what do you think should happen here. |
Track all comment lifecycle/operations. Closes #5
Comment actions should be added as a core context of the Stream plugin.
Possible actions:
The text was updated successfully, but these errors were encountered: