Hello,
I’m trying to create an app that allows users to sign up, but does not let them login until the admin on the backend gives the okay. How would I go about doing this?
Thanks a ton,
Hello,
I’m trying to create an app that allows users to sign up, but does not let them login until the admin on the backend gives the okay. How would I go about doing this?
Thanks a ton,
Hi there, @noah1… one way you could go here is to simply have a yes/no field (maybe called confirmed
) on the User
data type, and default the field to no when a user signs up. Use a value of no in the field to limit a new user’s access to the app, and when an admin confirms the user, flip the user’s field to yes.
Hope this helps.
Best…
Mike