From ab3074fdee44103424a58577f5c81c9d2436fc68 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 4 May 2023 00:55:33 -0500 Subject: Add the !filter and !warn imperative labels (#580) --- src/lib/labeling/const.ts | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'src/lib/labeling/const.ts') diff --git a/src/lib/labeling/const.ts b/src/lib/labeling/const.ts index f219cdb79..54cc732b9 100644 --- a/src/lib/labeling/const.ts +++ b/src/lib/labeling/const.ts @@ -6,7 +6,23 @@ export const ILLEGAL_LABEL_GROUP: LabelValGroup = { title: 'Illegal Content', warning: 'Illegal Content', values: ['csam', 'dmca-violation', 'nudity-nonconsentual'], - imagesOnly: false, // not applicable + imagesOnly: false, +} + +export const ALWAYS_FILTER_LABEL_GROUP: LabelValGroup = { + id: 'always-filter', + title: 'Content Warning', + warning: 'Content Warning', + values: ['!filter'], + imagesOnly: false, +} + +export const ALWAYS_WARN_LABEL_GROUP: LabelValGroup = { + id: 'always-warn', + title: 'Content Warning', + warning: 'Content Warning', + values: ['!warn'], + imagesOnly: false, } export const UNKNOWN_LABEL_GROUP: LabelValGroup = { -- cgit 1.4.1