diff options
author | 2021-05-24 18:49:48 +0200 | |
---|---|---|
committer | 2021-05-24 18:49:48 +0200 | |
commit | e670c32a9147f632d06ee10c170201677ec1e12d (patch) | |
tree | 08a49c9942529d3e7457a54b72d334ad36060976 /internal/db/db.go | |
parent | first draft of Dockerfile (diff) | |
download | gotosocial-e670c32a9147f632d06ee10c170201677ec1e12d.tar.xz |
Faves (#31)
* start on federating faves
* outbound federation of likes working
Diffstat (limited to 'internal/db/db.go')
-rw-r--r-- | internal/db/db.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/db.go b/internal/db/db.go index e43318c58..9ad811580 100644 --- a/internal/db/db.go +++ b/internal/db/db.go @@ -270,7 +270,7 @@ type DB interface { // FaveStatus faves the given status, using accountID as the faver. // The returned fave will be nil if the status was already faved. - FaveStatus(status *gtsmodel.Status, accountID string) (*gtsmodel.StatusFave, error) + // FaveStatus(status *gtsmodel.Status, accountID string) (*gtsmodel.StatusFave, error) // UnfaveStatus unfaves the given status, using accountID as the unfaver (sure, that's a word). // The returned fave will be nil if the status was already not faved. |