Re: Implementing user alias in django.

2016-06-28 Thread Asif Saifuddin
Thanks I will try your suggested way. On Tuesday, June 28, 2016 at 6:36:02 PM UTC+6, Asif Saifuddin wrote: > > Hi, > > I'm planning to implement user alias in django. A user can create many > alias and each alias will work like and full user. each alias will have > different newsfeed/user follow

Re: Implementing user alias in django.

2016-06-28 Thread ludovic coues
I would separate user and account. User is one person and is used to connect. Account have newsfeed and follow other user. Each user can manage as many account as he want. Many user can manage the same account. All that can be transparent to your user if you setup an account matching the user for

Implementing user alias in django.

2016-06-28 Thread Asif Saifuddin
Hi, I'm planning to implement user alias in django. A user can create many alias and each alias will work like and full user. each alias will have different newsfeed/user follow other user/alias and each alias can do every action a real user can do. How should I implement this user model/archi