CuriousCI
04/28/2022, 7:09 AMclass Donor(models.Model):
user_id = models.CharField(max_length=2048)
name = models.CharField(max_length=512)
surname = models.CharField(max_length=512)
phone = PhoneNumberField()
# etc...
When the user signs-up, I create a custom instance which has the SuperTokens user_id inside, is there a better solution for Django?
Also, I wanted to ask if the
include_recipe_ids field in the get_users() function
is for manually specifying the ids of the users you want to retrieve?
https://supertokens.com/docs/python/supertokens.htmlrp
04/28/2022, 7:10 AMCuriousCI
04/28/2022, 7:10 AMrp
04/28/2022, 7:10 AMCuriousCI
04/28/2022, 7:11 AM