-
Notifications
You must be signed in to change notification settings - Fork 177
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
Post persist Event will not be fired if using the Orphanage #1
Comments
Currently I don't see any use-case where we need another event being dispatched after calling |
bytehead
pushed a commit
that referenced
this issue
Dec 23, 2016
Ordered JavaScript libraries by today's relevance
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the only point where the POST_PERSIST Event will be fired is in
UploadCotroller::upload()
. If you're using an Orphanage you have to manually call theOrphanage::uploadFiles
method. In addition, the PostPersistEvent always gets aRequest
object, which is not really useful when using the Orphanage.Either create a new Event which will be fired after the files where successfully uploaded by the Orphanage or move the request parameter to an option array, like in PostUploadEvent.
The text was updated successfully, but these errors were encountered: