aboutsummaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2020-06-18 05:02:45 +0000
committerr <r@freesoftwareextremist.com>2020-06-18 05:04:18 +0000
commit34c1d087afd26b2ca8426333c02c943d13f3fdb0 (patch)
treee05a72d81cdd1ad8034eccf3c2cc73f93c17f37d /model
parentbd3f9ac9668d1363158b13efab41e734eaae2aed (diff)
downloadbloat-34c1d087afd26b2ca8426333c02c943d13f3fdb0.tar.gz
bloat-34c1d087afd26b2ca8426333c02c943d13f3fdb0.zip
Disable scope selection when replying to a direct post
Diffstat (limited to 'model')
-rw-r--r--model/post.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/model/post.go b/model/post.go
index 58997f7..7cfead7 100644
--- a/model/post.go
+++ b/model/post.go
@@ -13,7 +13,8 @@ type PostContext struct {
}
type ReplyContext struct {
- InReplyToID string
- InReplyToName string
- ReplyContent string
+ InReplyToID string
+ InReplyToName string
+ ReplyContent string
+ ForceVisibility bool
}