I have created two apps in to my single project.Now I wanted to get the profiles in both apps.So I wanted to know that how I design these apps in to AUTH_PROFILE_MODULE
Because it takes only one at a time e.g. AUTH_PROFILE_MODULE=asd.Asd
Can anybody tell how can I declare it for more than one app
As @Daniel Roseman said you can only have one user profile. So if you want to store user information specific to each app, you can create a model in the app and have
OneToOnerelation with main profile model.Each app manages, manipulates the user attributes through its own model.