plain.auth 0.9.0__tar.gz → 0.10.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plain_auth-0.9.0 → plain_auth-0.10.0}/PKG-INFO +2 -2
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/README.md +1 -1
- {plain_auth-0.9.0 → plain_auth-0.10.0}/pyproject.toml +1 -1
- {plain_auth-0.9.0 → plain_auth-0.10.0}/.gitignore +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/LICENSE +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/README.md +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/__init__.py +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/config.py +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/default_settings.py +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/middleware.py +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/sessions.py +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/utils.py +0 -0
- {plain_auth-0.9.0 → plain_auth-0.10.0}/plain/auth/views.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plain.auth
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: User authentication and authorization for Plain.
|
|
5
5
|
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -50,7 +50,7 @@ from plain.passwords.models import PasswordField
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
class User(models.Model):
|
|
53
|
-
email = models.EmailField(
|
|
53
|
+
email = models.EmailField()
|
|
54
54
|
password = PasswordField()
|
|
55
55
|
is_admin = models.BooleanField(default=False)
|
|
56
56
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
@@ -38,7 +38,7 @@ from plain.passwords.models import PasswordField
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
class User(models.Model):
|
|
41
|
-
email = models.EmailField(
|
|
41
|
+
email = models.EmailField()
|
|
42
42
|
password = PasswordField()
|
|
43
43
|
is_admin = models.BooleanField(default=False)
|
|
44
44
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|