summaryrefslogtreecommitdiff
path: root/internal/gtsmodel/followrequest.go
diff options
context:
space:
mode:
authorLibravatar tsmethurst <tobi.smethurst@klarrio.com>2021-08-31 19:27:02 +0200
committerLibravatar tsmethurst <tobi.smethurst@klarrio.com>2021-08-31 19:27:02 +0200
commit3d8aa7a4d2f3f3f986241da21a953fa194d25fd8 (patch)
tree395b059a4885d8dc8aec9c85f532abe4475d62d9 /internal/gtsmodel/followrequest.go
parentchange muchos things (diff)
downloadgotosocial-3d8aa7a4d2f3f3f986241da21a953fa194d25fd8.tar.xz
more updates
Diffstat (limited to 'internal/gtsmodel/followrequest.go')
-rw-r--r--internal/gtsmodel/followrequest.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gtsmodel/followrequest.go b/internal/gtsmodel/followrequest.go
index c4b3c9997..ae22f6487 100644
--- a/internal/gtsmodel/followrequest.go
+++ b/internal/gtsmodel/followrequest.go
@@ -30,6 +30,6 @@ type FollowRequest struct {
Account *Account `validate:"-" bun:"rel:belongs-to"` // Account corresponding to accountID
TargetAccountID string `validate:"required,ulid" bun:"type:CHAR(26),unique:frsrctarget,notnull"` // Who is the target of this follow request?
TargetAccount *Account `validate:"-" bun:"rel:belongs-to"` // Account corresponding to targetAccountID
- ShowReblogs bool `validate:"-" bun:",nullzero,default:true"` // Does this follow also want to see reblogs and not just posts?
+ ShowReblogs bool `validate:"-" bun:",nullzero,default:true"` // Does this follow also want to see reblogs and not just posts?
Notify bool `validate:"-" bun:",nullzero,default:false"` // does the following account want to be notified when the followed account posts?
}