Social Auth - Implement Custom Logic after SignIn

So far, I use email and password for authentication. After successful email verification, I create basic user settings which are required to make the app work.

...
onEmailVerification: async (user, request) => {
    await createBasicUserSettings(user);
}
...


Now, I added social auth.

How can I do something similar after a user signed in successfully via a social auth provider?
Was this page helpful?