Recommended replacement for modifyClass("model:composer") when overriding save()

I guess it would depend on what you’re overriding the save method to do…

if you are looking to prevent a save based on some condition, you could use our composer-service-cannot-submit-post value transformer

if you’re doing something once the post is created, there’s api.onAppEvent("post:created")

if you’re adding a field there’s api.serializeOnCreate

do any of those fit what you’re looking for?