How to create the user in schema auth table users ? #32905
Unanswered
Hatta-Food-Hub
asked this question in
Questions
Replies: 1 comment
-
I'm going to assume you are trying to add another user to the system as a admin user or something of the sorts. You can use the https://supabase.com/docs/reference/javascript/auth-admin-createuser |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have to create the user from the user
using below method
const { data: user, error } = await supabase.auth.signUp({
email: data.email,
password: data.password,
});
but it then created the updated token and removed the signed user
how to manage the role base logins in auth schema
Beta Was this translation helpful? Give feedback.
All reactions