diff options
author | bnewbold <bnewbold@robocracy.org> | 2023-05-11 08:37:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 10:37:26 -0500 |
commit | c2fb4d4b4b584bb109fa83be750b11e6190f61d6 (patch) | |
tree | 34aa8c3264066ddf28a8bbed3d6060264a4da96a | |
parent | b0ebb6c9d17f9f6f78bf13fd2a0ba89d83a7c2a8 (diff) | |
download | voidsky-c2fb4d4b4b584bb109fa83be750b11e6190f61d6.tar.zst |
small label updates (#612)
* labels: fix 'consentual' typo This label has never been applied, so safe to just change it. * labels: new 'nsfl' label, under both porn and gore categories * labels: new account-security label (always warn) * labling: re-word spam subtitle
-rw-r--r-- | src/lib/labeling/const.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/labeling/const.ts b/src/lib/labeling/const.ts index 2a9b921db..b26388123 100644 --- a/src/lib/labeling/const.ts +++ b/src/lib/labeling/const.ts @@ -5,7 +5,7 @@ export const ILLEGAL_LABEL_GROUP: LabelValGroup = { id: 'illegal', title: 'Illegal Content', warning: 'Illegal Content', - values: ['csam', 'dmca-violation', 'nudity-nonconsentual'], + values: ['csam', 'dmca-violation', 'nudity-nonconsensual'], } export const ALWAYS_FILTER_LABEL_GROUP: LabelValGroup = { @@ -19,7 +19,7 @@ export const ALWAYS_WARN_LABEL_GROUP: LabelValGroup = { id: 'always-warn', title: 'Content Warning', warning: 'Content Warning', - values: ['!warn'], + values: ['!warn', 'account-security'], } export const UNKNOWN_LABEL_GROUP: LabelValGroup = { @@ -38,7 +38,7 @@ export const CONFIGURABLE_LABEL_GROUPS: Record< title: 'Explicit Sexual Images', subtitle: 'i.e. Pornography', warning: 'Sexually Explicit', - values: ['porn'], + values: ['porn', 'nsfl'], isAdultImagery: true, }, nudity: { @@ -62,7 +62,7 @@ export const CONFIGURABLE_LABEL_GROUPS: Record< title: 'Violent / Bloody', subtitle: 'Gore, self-harm, torture', warning: 'Violence', - values: ['gore', 'self-harm', 'torture'], + values: ['gore', 'self-harm', 'torture', 'nsfl'], isAdultImagery: true, }, hate: { @@ -74,7 +74,7 @@ export const CONFIGURABLE_LABEL_GROUPS: Record< spam: { id: 'spam', title: 'Spam', - subtitle: 'Excessive low-quality posts', + subtitle: 'Excessive unwanted interactions', warning: 'Spam', values: ['spam'], }, |