about summary refs log tree commit diff
path: root/src/lib/labeling/types.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-05-09 00:43:20 -0500
committerGitHub <noreply@github.com>2023-05-09 00:43:20 -0500
commitb756a2795807ad85051d572f82957356f9b5f44b (patch)
tree7a9c84b2bbbe590b048a55a04650b1cb8fc5b2d3 /src/lib/labeling/types.ts
parent7a176b3fdff7d27651b306e7550010b344dfa922 (diff)
downloadvoidsky-b756a2795807ad85051d572f82957356f9b5f44b.tar.zst
[APP-639] Improve nsfw handling & force hidden on iOS (#605)
* Identify adult content labels and handle them more specifically

* Change adult content defaults to more conservative settings

* Add an adultcontentenabled override that prohibits access on iOS

* Improve usability of the content hider

* Fix lint
Diffstat (limited to 'src/lib/labeling/types.ts')
-rw-r--r--src/lib/labeling/types.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/labeling/types.ts b/src/lib/labeling/types.ts
index 123c5d1f3..078043076 100644
--- a/src/lib/labeling/types.ts
+++ b/src/lib/labeling/types.ts
@@ -11,7 +11,7 @@ export interface LabelValGroup {
     | 'always-warn'
     | 'unknown'
   title: string
-  imagesOnly: boolean
+  isAdultImagery?: boolean
   subtitle?: string
   warning: string
   values: string[]