aboutsummaryrefslogtreecommitdiff
path: root/apps/accounts/models.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-11-24 22:29:02 -0600
committerluxagraf <sng@luxagraf.net>2018-11-24 22:29:02 -0600
commit0c2a092e8d8ad33a1c306ee9efca0da96eb56415 (patch)
tree0aaf48f20771c97ec30e005ef818ef6ce4856097 /apps/accounts/models.py
parent7a284139f6b97bb06548e69d47eef188bc99099d (diff)
way to much for a single commit
Diffstat (limited to 'apps/accounts/models.py')
-rw-r--r--apps/accounts/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/accounts/models.py b/apps/accounts/models.py
index a930081..5ed7634 100644
--- a/apps/accounts/models.py
+++ b/apps/accounts/models.py
@@ -15,6 +15,8 @@ class UserProfile(models.Model):
website = models.CharField(max_length=300, null=True, blank=True, default='')
location = models.CharField(max_length=300, null=True, blank=True, default='')
bio = models.TextField(null=True, blank=True, default='')
+ #default_note_public = models.BooleanField(default=False)
+ #default_note_folder = models.ForeignKey('notes.Folder', null=True, on_delete=models.SET_NULL)
def __str__(self):
return self.user.username