Your data, your control. Fully open source, authentication and authorization. No lock-ins. Deployment in Railway in 120 seconds || Spin a docker image as a micro-service in your infra. Built in login page and Admin panel out of the box.
Describe the buguser.created webhook is triggered when user entry is created in database either via signup process / invite process
user.signup webhook is triggered when user email / mobile is verified:
therefore if the DISABLE_EMAIL_VERIFICATION environment variable is set to true so that email verification is disabled, then a user.signup webhook should automatically be triggered along with the user.created webhook.
at the moment this does not happen and only one webhook is triggered/received which is just the user.signup webhook.
So the user.created webhook is not additionally detected when it should be.
Steps To Reproduce
create webhooks for both user.signup and user.created
set auth method to username and password
disable email verification
register a new user
observe that only the user.signup webhook is received
Expected behavior
both user.signup webhook and user.created webhook should be triggered
Version: 1.1.65 (currently latest)
Describe the bug
user.created
webhook is triggered when user entry is created in database either via signup process / invite processuser.signup
webhook is triggered when user email / mobile is verified:therefore if the DISABLE_EMAIL_VERIFICATION environment variable is set to
true
so that email verification is disabled, then auser.signup
webhook should automatically be triggered along with theuser.created
webhook.at the moment this does not happen and only one webhook is triggered/received which is just the
user.signup
webhook. So theuser.created
webhook is not additionally detected when it should be.Steps To Reproduce
create webhooks for both
user.signup
anduser.created
set auth method to username and password disable email verification register a new user observe that only theuser.signup
webhook is receivedExpected behavior both user.signup webhook and user.created webhook should be triggered