We are using the hook resume_manager_resume_submitted to trigger a redirect on form submission. It looks like this hook has been moved in a newer version, and now it fires too early (before update_resume_data, which we have some other custom stuff hooked into).
I think this is because resume_manager_resume_submitted gets fired in save_resume via post meta update update_post_meta( $this->resume_id, '_public_submission', true ); which triggers WP_Resume_Manager_Resume_Lifecycle::finalize_submission (as that is hooked into any change to the _public_submission meta).
Is this expected behaviour, and if so is there a better hook we can use that definitely runs right at the end of submission, after everything is saved?
