1
0
Fork 0

Add user default privacy setting to the privacy_select and user preferences

This commit is contained in:
Ilona Brand 2021-02-13 19:42:25 -06:00
parent 7b749d6476
commit 73c30e8c9a
5 changed files with 34 additions and 6 deletions

View file

@ -103,7 +103,7 @@ class EditUserForm(CustomForm):
class Meta:
model = models.User
fields = [
'avatar', 'name', 'email', 'summary', 'manually_approves_followers'
'avatar', 'name', 'email', 'summary', 'manually_approves_followers', 'default_post_privacy'
]
help_texts = {f: None for f in fields}