diff options
Diffstat (limited to 'internal/gtsmodel/list.go')
-rw-r--r-- | internal/gtsmodel/list.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/gtsmodel/list.go b/internal/gtsmodel/list.go index f99531ce8..e3b9f9a30 100644 --- a/internal/gtsmodel/list.go +++ b/internal/gtsmodel/list.go @@ -27,7 +27,6 @@ type List struct { Title string `bun:",nullzero,notnull,unique:listaccounttitle"` // Title of this list. AccountID string `bun:"type:CHAR(26),notnull,nullzero,unique:listaccounttitle"` // Account that created/owns the list Account *Account `bun:"-"` // Account corresponding to accountID - ListEntries []*ListEntry `bun:"-"` // Entries contained by this list. RepliesPolicy RepliesPolicy `bun:",nullzero,notnull,default:'followed'"` // RepliesPolicy for this list. Exclusive *bool `bun:",nullzero,notnull,default:false"` // Hide posts from members of this list from your home timeline. } |