diff options
Diffstat (limited to 'internal/gtsmodel/filter.go')
-rw-r--r-- | internal/gtsmodel/filter.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/gtsmodel/filter.go b/internal/gtsmodel/filter.go index c3feec00f..b1e8f5cac 100644 --- a/internal/gtsmodel/filter.go +++ b/internal/gtsmodel/filter.go @@ -81,6 +81,8 @@ type FilterStatus struct { type FilterAction string const ( + // FilterActionNone filters should not exist, except internally, for partially constructed or invalid filters. + FilterActionNone FilterAction = "" // FilterActionWarn means that the status should be shown behind a warning. FilterActionWarn FilterAction = "warn" // FilterActionHide means that the status should be removed from timeline results entirely. |