lkuessner / patreon-clone-api

2 stars 0 forks source link

feat: social signup/sign in for users #3

Open Blankscreen-exe opened 1 month ago

Blankscreen-exe commented 1 month ago

Scope

Sign up and Sign in views.

Note: this issue is to be performed after issue #5

Description

We need social sign-up/sign-in feature which enables users to register or login to our app using their social accounts such as Google, Facebook etc.

For now we will just go for Google social sign-up/sign-in.

References

Additional Information

A general way to do this is by taking a "token" from the login/signup request and store it in our database. The token will be stored in our user's table called Profile which is a table inheriting the django.contrib.auth.models.User table. This new table will contain the fields:

Additional Tasks