Oauth Verification required?
I am using only oauth and noticed that the verification table has an entry whenever I sign in. I don’t think this is getting cleaned up as well. I tried to set the following:
emailVerification: {
sendOnSignUp: false,
sendOnSignIn: false,
sendVerificationEmail: async ()=> {}
}
I thought by doing this, it wouldn’t create an entry in the verification. I even tried to use the database hook in the created before to return false but then that returns an error.
emailVerification: {
sendOnSignUp: false,
sendOnSignIn: false,
sendVerificationEmail: async ()=> {}
}
I thought by doing this, it wouldn’t create an entry in the verification. I even tried to use the database hook in the created before to return false but then that returns an error.