From fb2ef90ec51c47c801d290f2f6ff2289121cbeb1 Mon Sep 17 00:00:00 2001 From: nicole mikołajczyk Date: Wed, 13 Aug 2025 13:23:42 +0200 Subject: [feature] support blur filter action (#4371) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This pull request implements the `blur` value of `filter_action` for status filtering. It was introduced by Mastodon 4.4.0. [Related docs update](https://github.com/mastodon/documentation/pull/1620) Signed-off-by: nicole mikołajczyk Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4371 Reviewed-by: kim Co-authored-by: nicole mikołajczyk Co-committed-by: nicole mikołajczyk --- internal/typeutils/frontendtointernal.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/typeutils/frontendtointernal.go') diff --git a/internal/typeutils/frontendtointernal.go b/internal/typeutils/frontendtointernal.go index 239527eb1..412da7257 100644 --- a/internal/typeutils/frontendtointernal.go +++ b/internal/typeutils/frontendtointernal.go @@ -70,6 +70,8 @@ func APIFilterActionToFilterAction(m apimodel.FilterAction) gtsmodel.FilterActio return gtsmodel.FilterActionWarn case apimodel.FilterActionHide: return gtsmodel.FilterActionHide + case apimodel.FilterActionBlur: + return gtsmodel.FilterActionBlur } return gtsmodel.FilterActionNone } -- cgit v1.2.3