From 540edef0c20dad4ea13d8af091ccf69796b848b6 Mon Sep 17 00:00:00 2001 From: Vyr Cossont Date: Mon, 9 Sep 2024 15:56:58 -0700 Subject: [feature] Implement exclusive lists (#3280) Fixes #2616 --- internal/gtsmodel/list.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/gtsmodel') diff --git a/internal/gtsmodel/list.go b/internal/gtsmodel/list.go index ea53df9b3..f99531ce8 100644 --- a/internal/gtsmodel/list.go +++ b/internal/gtsmodel/list.go @@ -29,6 +29,7 @@ type List struct { 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. } // ListEntry refers to a single follow entry in a list. -- cgit v1.2.3