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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.auth
3
- Version: 0.9.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(unique=True)
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(unique=True)
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)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.auth"
3
- version = "0.9.0"
3
+ version = "0.10.0"
4
4
  description = "User authentication and authorization for Plain."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes