diff options
Diffstat (limited to 'activities/views')
-rw-r--r-- | activities/views/posts.py | 3 | ||||
-rw-r--r-- | activities/views/timelines.py | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/activities/views/posts.py b/activities/views/posts.py index 268a3fe..8cd91a1 100644 --- a/activities/views/posts.py +++ b/activities/views/posts.py @@ -202,6 +202,9 @@ class Compose(FormView): def get_initial(self): initial = super().get_initial() + initial[ + "visibility" + ] = self.request.identity.config_identity.default_post_visibility if self.reply_to: initial["reply_to"] = self.reply_to.pk initial["visibility"] = Post.Visibilities.unlisted diff --git a/activities/views/timelines.py b/activities/views/timelines.py index b680c8a..4f2a515 100644 --- a/activities/views/timelines.py +++ b/activities/views/timelines.py @@ -56,6 +56,7 @@ class Home(FormView): author=self.request.identity, content=linebreaks_filter(form.cleaned_data["text"]), summary=form.cleaned_data.get("content_warning"), + visibility=self.request.identity.config_identity.default_post_visibility, ) return redirect(".") |