diff options
author | Gabriel RodrÃguez Alberich | 2022-12-14 18:15:46 +0100 |
---|---|---|
committer | GitHub | 2022-12-14 10:15:46 -0700 |
commit | d1ce056288c97eea18e17f1b950194678618cefc (patch) | |
tree | f090c5da442348d7bf35a374cb4efc167e03d311 /core/models | |
parent | 0d8b7db2729d94338824c748901637c625c103b0 (diff) | |
download | takahe-d1ce056288c97eea18e17f1b950194678618cefc.tar.gz takahe-d1ce056288c97eea18e17f1b950194678618cefc.tar.bz2 takahe-d1ce056288c97eea18e17f1b950194678618cefc.zip |
Show follows and following counts on profile page
And let their visibility be configured
Diffstat (limited to 'core/models')
-rw-r--r-- | core/models/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/models/config.py b/core/models/config.py index 53c729f..2bb0d75 100644 --- a/core/models/config.py +++ b/core/models/config.py @@ -237,3 +237,4 @@ class Config(models.Model): toot_mode: bool = False default_post_visibility: int = 0 # Post.Visibilities.public + visible_follows: bool = True |