diff options
Diffstat (limited to 'internal/gtsmodel/account.go')
-rw-r--r-- | internal/gtsmodel/account.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/gtsmodel/account.go b/internal/gtsmodel/account.go index d6ce95cc9..04eb58e8c 100644 --- a/internal/gtsmodel/account.go +++ b/internal/gtsmodel/account.go @@ -76,13 +76,13 @@ type Account struct { */ // Does this account need an approval for new followers? - Locked bool + Locked bool `pg:",default:false"` // Should this account be shown in the instance's profile directory? - Discoverable bool + Discoverable bool `pg:",default:false"` // Default post privacy for this account - Privacy Visibility + Privacy Visibility `pg:",default:'public'"` // Set posts from this account to sensitive by default? - Sensitive bool + Sensitive bool `pg:",default:false"` // What language does this account post in? Language string `pg:",default:'en'"` |