VeliovGroup/Meteor-Files onAfterUpload Client Callback

How do I get the _id from the upload after it’s complete?

Well, duh, I figured it out after posting. In onRendered:

  Images.on('afterUpload', function (fileRef) {
    console.info('DONE',fileRef);
  });