You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/mastodon/entities/v2/filter.ts
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ export type FilterContext = keyof FilterContextRegistry;
14
14
exportinterfaceFilterActionRegistry{
15
15
warn: never;
16
16
hide: never;
17
+
blur: never;
17
18
}
18
19
19
20
exporttypeFilterAction=keyofFilterActionRegistry;
@@ -37,6 +38,8 @@ export interface Filter {
37
38
* `warn` = show a warning that identifies the matching filter by title, and allow the user to expand the filtered status. This is the default (and unknown values should be treated as equivalent to warn).
38
39
*
39
40
* `hide` = do not show this status if it is received
41
+
*
42
+
* `blur` = hide/blur media attachments with a warning identifying the matching filter by `title`
0 commit comments