feat: allow to filter events by local-only

In addition to internal (self + federated) and global (global external search engine), introduce the
self possibility

Closes #1322

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2024-02-09 10:54:00 +01:00
parent d1b1979ee5
commit 9d99684402
9 changed files with 87 additions and 8 deletions

View File

@@ -293,6 +293,7 @@ export enum InstanceFollowStatus {
}
export enum SearchTargets {
SELF = "SELF",
INTERNAL = "INTERNAL",
GLOBAL = "GLOBAL",
}