summaryrefslogtreecommitdiff
path: root/internal/db/list.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2024-07-31 16:03:34 +0200
committerLibravatar GitHub <noreply@github.com>2024-07-31 15:03:34 +0100
commit38f041cea1ba0cd3492f351353a29aa5b73e2731 (patch)
treebdd055d5cf7d9c06523c694cb4abe86d220960d0 /internal/db/list.go
parent[feature] Object store custom URL (S3) (#3046) (diff)
downloadgotosocial-38f041cea1ba0cd3492f351353a29aa5b73e2731.tar.xz
[feature] Allow users to export data via the settings panel (#3140)
* [feature] Allow users to export data via the settings panel * rename/move some stuff
Diffstat (limited to 'internal/db/list.go')
-rw-r--r--internal/db/list.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/db/list.go b/internal/db/list.go
index 16a0207de..a57f0ed23 100644
--- a/internal/db/list.go
+++ b/internal/db/list.go
@@ -33,6 +33,9 @@ type List interface {
// GetListsForAccountID gets all lists owned by the given accountID.
GetListsForAccountID(ctx context.Context, accountID string) ([]*gtsmodel.List, error)
+ // CountListsForAccountID counts the number of lists owned by the given accountID.
+ CountListsForAccountID(ctx context.Context, accountID string) (int, error)
+
// PopulateList ensures that the list's struct fields are populated.
PopulateList(ctx context.Context, list *gtsmodel.List) error