We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I looked through the discussion thread and didn't find a similar question
Thanks for the great module!
I have a question.
Why does the register||createUser function directly create a user without using the great Directus functionality out of the box?
register||createUser
/users/register
/users/register/verify-email
At the same time, the requestPasswordReset method uses a similar Directus mechanism with verification
requestPasswordReset
const register = async (data: DirectusRegisterCredentials & { verification_url: string }): Promise<void> => { return await directus('/users/register', { method: 'POST', body: data, }) } const verifyEmail = async (token: string): Promise<void> => { return await directus('/users/register/verify-email', { method: 'GET', params: { token, }, }) }
So we can use the boxed mechanism for user registration verification (sending an email)
The text was updated successfully, but these errors were encountered:
Feel free to make a PR 😉
Sorry, something went wrong.
No branches or pull requests
Hi, I looked through the discussion thread and didn't find a similar question
Thanks for the great module!
I have a question.
Why does the
register||createUser
function directly create a user without using the great Directus functionality out of the box?/users/register
/users/register/verify-email
At the same time, the
requestPasswordReset
method uses a similar Directus mechanism with verificationSome example
So we can use the boxed mechanism for user registration verification (sending an email)
The text was updated successfully, but these errors were encountered: