diff options
| author | Bobby <[email protected]> | 2022-12-28 05:33:27 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-12-28 05:33:27 -0500 |
| commit | b1043b02117fb0b6a09d99fc1b11ac727d404921 (patch) | |
| tree | fbc7105d492ff5360752bde69bb00d2b65d40ace /users/models.py | |
| parent | 5c69caca0f9c12c98a1bd710af46299a9ef219d6 (diff) | |
| download | thatcomputerscientist-b1043b02117fb0b6a09d99fc1b11ac727d404921.tar.xz thatcomputerscientist-b1043b02117fb0b6a09d99fc1b11ac727d404921.zip | |
Added Avatars
Diffstat (limited to 'users/models.py')
| -rw-r--r-- | users/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/models.py b/users/models.py index 65840495..746814ef 100644 --- a/users/models.py +++ b/users/models.py @@ -9,7 +9,7 @@ class UserProfile(models.Model): ) location = models.CharField(max_length=50, blank=True) bio = models.TextField(blank=True) - gravatar_email = models.EmailField(blank=True) + avatar_url = models.TextField(blank=True) is_public = models.BooleanField(default=False) email_public = models.BooleanField(default=False) email_verified = models.BooleanField(default=False) |
