You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django documentation said about isActive as follows
Boolean. Designates whether this user account should be considered active.
We recommend that you set this flag to False instead of deleting accounts;
that way, if your applications have any foreign keys to users, the foreign keys won’t break.
So, think about this scenario. A user has created an account and verified successfuly. Then admin decided to ban this user and set its isActive flag to false. User is now able to request verification mail (re-send) and set own isActive flag to true.
What do you think about this problem? Thank you.
The text was updated successfully, but these errors were encountered:
Django documentation said about isActive as follows
So, think about this scenario. A user has created an account and verified successfuly. Then admin decided to ban this user and set its isActive flag to false. User is now able to request verification mail (re-send) and set own isActive flag to true.
What do you think about this problem? Thank you.
The text was updated successfully, but these errors were encountered: