Add distinct events for CRUD on Lessons entities. Currently, the same event is used for the creation of pages, items and comments which makes it more expensive to parse on the bus as you need to parse the reference to find out what kind of event it is. Stuff like Bullhorns and Sitestats will be able to make use of this.
@Neal Caidin This may way to make the documentation for any users doing reporting.
These events were removed
lessonbuilder.create - creating a page or item
lessonbuilder.update - updating a page or item
lessonbuilder.delete - deleting a page or item
These events were added
lessonbuilder.page.create - creating a page
lessonbuilder.page.read - reading a page
lessonbuilder.page.update - updating a page
lessonbuilder.page.delete - deleting a page
lessonbuilder.item.create - creating a item
lessonbuilder.item.read - reading a item
lessonbuilder.item.update - updating a item
lessonbuilder.comment.create - creating a comment
lessonbuilder.comment.update - updating a comment
lessonbuilder.comment.delete - deleting a comment
Add distinct events for CRUD on Lessons entities. Currently, the same event is used for the creation of pages, items and comments which makes it more expensive to parse on the bus as you need to parse the reference to find out what kind of event it is. Stuff like Bullhorns and Sitestats will be able to make use of this.