summaryrefslogtreecommitdiff
path: root/internal/typeutils/frontendtointernal.go
diff options
context:
space:
mode:
authorLibravatar nicole mikołajczyk <git@mkljczk.pl>2025-08-13 13:23:42 +0200
committerLibravatar kim <gruf@noreply.codeberg.org>2025-08-13 13:23:42 +0200
commitfb2ef90ec51c47c801d290f2f6ff2289121cbeb1 (patch)
tree05ad2712b7c06209179af5bb9ac170203ccab0c6 /internal/typeutils/frontendtointernal.go
parent[feature] 2fa management via CLI (#4368) (diff)
downloadgotosocial-fb2ef90ec51c47c801d290f2f6ff2289121cbeb1.tar.xz
[feature] support blur filter action (#4371)
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 <git@mkljczk.pl> Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4371 Reviewed-by: kim <gruf@noreply.codeberg.org> Co-authored-by: nicole mikołajczyk <git@mkljczk.pl> Co-committed-by: nicole mikołajczyk <git@mkljczk.pl>
Diffstat (limited to 'internal/typeutils/frontendtointernal.go')
-rw-r--r--internal/typeutils/frontendtointernal.go2
1 files changed, 2 insertions, 0 deletions
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
}