From 70f04194904fc7988d58b6a1874cf6d8f34d96fc Mon Sep 17 00:00:00 2001 From: Niyas Mohammed Date: Mon, 20 Jan 2020 01:22:09 +0530 Subject: [PATCH] Correct docs for User model (#89) --- docs/configuration/model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/model.md b/docs/configuration/model.md index 0619db76..1e9030c4 100644 --- a/docs/configuration/model.md +++ b/docs/configuration/model.md @@ -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