How can we prevent user from signing up with username and password?
we want our users to only login with account kit and don't want someone try to sign up with email address or other login methods.
we don't provide this as our auth but someone can create a custom login code and try to manipulate our parse server to bypass the auth method.
oauth: {
accountkit: {
appIds: '',
appSecret: ''
},
**email: false**
},
is there any option to disable legacy signup method? (email: false)?