Correct docs for User model (#89)

This commit is contained in:
Niyas Mohammed
2020-01-20 01:22:09 +05:30
committed by François Voron
parent 7279b44e19
commit 70f0419490

View File

@@ -5,7 +5,7 @@
* `id` (`str`) Unique identifier of the user. Default to a **UUID4**.
* `email` (`str`) Email of the user. Validated by [`email-validator`](https://github.com/JoshData/python-email-validator).
* `is_active` (`bool`) Whether or not the user is active. If not, login and forgot password requests will be denied. Default to `True`.
* `is_active` (`bool`) Whether or not the user is a superuser. Useful to implement administration logic. Default to `False`.
* `is_superuser` (`bool`) Whether or not the user is a superuser. Useful to implement administration logic. Default to `False`.
## Define your models