Hi there, I am thinking about using supertokens for our intenal admin app. We don't want to allow our users to signup, but want to create users through the user management dashboard. Is that supported?
n
nkshah2
03/28/2023, 9:47 AM
Hi @jamalm8656 ,
You can disable the sign up flow but at the moment the user dashboard does not allow creating new users. You can call functions exposed by the backend SDK manually to create users instead
j
jamalm8656
03/28/2023, 9:49 AM
I see. Would I use, for example, /auth/signup for creating users?
n
nkshah2
03/28/2023, 9:52 AM
If you want to use APIs you can refer to this spec: https://supertokens.com/docs/fdi
But you can always run a simple server that creates users for you by calling functions directly. For example
EmailPassword.signUp
that way you wont have to manually call the APIs repeatedly
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).