I have a Google App Engine app based on django / django_appengine that I wish to modify by adding user profile support to it, because the basic user model is a bit simplistic for my situation.
What's the best way to do this?
I have a Google App Engine app based on django / django_appengine that I wish to modify by adding user profile support to it, because the basic user model is a bit simplistic for my situation.
What's the best way to do this?
Copyright © 2021 Jogjafile Inc.
You can create a Model called for example
UserProfilewhich has as its key a user's email address or user ID.UserProfile profile = UserProfile.get_or_create(user.user_id)will make sure that no user profiles are created for existing user IDs.