summaryrefslogtreecommitdiffstats
path: root/activities
diff options
context:
space:
mode:
authorMichael Manfre2022-11-25 21:33:46 -0500
committerGitHub2022-11-25 19:33:46 -0700
commitd60ba9a0515aed0b8235a7738a5fecd8fd78f859 (patch)
treed571851b37d2b5c4a1f122e6fbf3890947ee7af2 /activities
parentab7a8cb120fe905562281b331a08e87abeff0fbe (diff)
downloadtakahe-d60ba9a0515aed0b8235a7738a5fecd8fd78f859.tar.gz
takahe-d60ba9a0515aed0b8235a7738a5fecd8fd78f859.tar.bz2
takahe-d60ba9a0515aed0b8235a7738a5fecd8fd78f859.zip
Added default post visibility
Diffstat (limited to 'activities')
-rw-r--r--activities/models/post.py2
-rw-r--r--activities/views/posts.py3
-rw-r--r--activities/views/timelines.py1
3 files changed, 5 insertions, 1 deletions
diff --git a/activities/models/post.py b/activities/models/post.py
index 642842c..dd82bcf 100644
--- a/activities/models/post.py
+++ b/activities/models/post.py
@@ -499,7 +499,7 @@ class Post(StatorModel):
@classmethod
def handle_delete_ap(cls, data):
"""
- Handles an incoming create request
+ Handles an incoming delete request
"""
with transaction.atomic():
# Find our post by ID if we have one
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(".")