Admin approval for social sign up

Hello.
I want to let our customers use their social accounts (gmail, twitter) to login to a new platform I’m building.
My question is about the registration process. How can I force some approval stage before they can effectively login? I know there are hooks (pre-user-registration and post-user registration), but the docs says they are only available for database and passworless connection.
This is what I want to achieve:

  1. User sign up using his/her email
  2. Admin authorizes/denies registration
  3. Email is sent to the user with the resolution.

Any ideas? Thanks in advance

1 Like

Hello! welcome to the Auth0 Community!

There is a way to make your request happen, creating a rule that verifies if the user’s app_metadata.verified value is set to true. This is a value that you’ll have to set manually for each user you want to allow logins for.

To discern your database users from your social users you can leverage the context object in rules which contains the context.connection value.

You can access your user’s app_metadata by going to Users & Roles > Users > Select an user > Details

About sending emails to the users, we do not manage an email service for custom actions not previously supported. That is something you would have to do manually.

Have a great week!

2 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.