Email verification, configure serverside callback?

When a user verifies their email, I want to recalculate something server-side.

Is there a way to configure a callback for this event?

Thanks!

I want this too. There’s a GitHub issue here: How to run code on successfully verified email?

I was able to do this with:

  1. the verification redirects to a route that did the calculation via Meteor.call(), and then
  2. that route redirected to the next route where they needed to be.