diff options
Diffstat (limited to 'internal/db/account.go')
-rw-r--r-- | internal/db/account.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/db/account.go b/internal/db/account.go index 7e7d1de43..015621632 100644 --- a/internal/db/account.go +++ b/internal/db/account.go @@ -73,6 +73,8 @@ type Account interface { // or replies. GetAccountWebStatuses(ctx context.Context, accountID string, limit int, maxID string) ([]*gtsmodel.Status, Error) + GetBookmarks(ctx context.Context, accountID string, limit int, maxID string, minID string) ([]*gtsmodel.StatusBookmark, Error) + GetAccountBlocks(ctx context.Context, accountID string, maxID string, sinceID string, limit int) ([]*gtsmodel.Account, string, string, Error) // GetAccountLastPosted simply gets the timestamp of the most recent post by the account. |