summaryrefslogtreecommitdiff
path: root/internal/visibility/filter.go
diff options
context:
space:
mode:
authorLibravatar Tobi Smethurst <31960611+tsmethurst@users.noreply.github.com>2021-07-09 18:32:48 +0200
committerLibravatar GitHub <noreply@github.com>2021-07-09 18:32:48 +0200
commitc7da64922f8b41daaee1cb8fc2961f7fa1336737 (patch)
treeb1f9c946bd223267f87f2a77a7455974d8d5e5e9 /internal/visibility/filter.go
parentDocs (#94) (diff)
downloadgotosocial-c7da64922f8b41daaee1cb8fc2961f7fa1336737.tar.xz
favourites GET implementation (#95)
Diffstat (limited to 'internal/visibility/filter.go')
-rw-r--r--internal/visibility/filter.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/visibility/filter.go b/internal/visibility/filter.go
index d12ad0ff6..181eb8ee7 100644
--- a/internal/visibility/filter.go
+++ b/internal/visibility/filter.go
@@ -17,6 +17,11 @@ type Filter interface {
//
// This function will call StatusVisible internally, so it's not necessary to call it beforehand.
StatusHometimelineable(targetStatus *gtsmodel.Status, requestingAccount *gtsmodel.Account) (bool, error)
+
+ // StatusPublictimelineable returns true if targetStatus should be in the public timeline of the requesting account.
+ //
+ // This function will call StatusVisible internally, so it's not necessary to call it beforehand.
+ StatusPublictimelineable(targetStatus *gtsmodel.Status, timelineOwnerAccount *gtsmodel.Account) (bool, error)
}
type filter struct {