diff options
Diffstat (limited to 'internal/db/status.go')
-rw-r--r-- | internal/db/status.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/internal/db/status.go b/internal/db/status.go index fdce19094..c0e330260 100644 --- a/internal/db/status.go +++ b/internal/db/status.go @@ -28,9 +28,6 @@ type Status interface { // GetStatusByID returns one status from the database, with no rel fields populated, only their linking ID / URIs GetStatusByID(ctx context.Context, id string) (*gtsmodel.Status, Error) - // GetStatuses gets a slice of statuses corresponding to the given status IDs. - GetStatuses(ctx context.Context, ids []string) ([]*gtsmodel.Status, Error) - // GetStatusByURI returns one status from the database, with no rel fields populated, only their linking ID / URIs GetStatusByURI(ctx context.Context, uri string) (*gtsmodel.Status, Error) @@ -58,6 +55,12 @@ type Status interface { // CountStatusFaves returns the amount of faves/likes recorded for a status, or an error if something goes wrong CountStatusFaves(ctx context.Context, status *gtsmodel.Status) (int, Error) + // GetStatuses gets a slice of statuses corresponding to the given status IDs. + GetStatusesByIDs(ctx context.Context, ids []string) ([]*gtsmodel.Status, error) + + // GetStatusesUsingEmoji fetches all status models using emoji with given ID stored in their 'emojis' column. + GetStatusesUsingEmoji(ctx context.Context, emojiID string) ([]*gtsmodel.Status, error) + // GetStatusParents gets the parent statuses of a given status. // // If onlyDirect is true, only the immediate parent will be returned. |