diff options
Diffstat (limited to 'src/state/queries/preferences/moderation.ts')
-rw-r--r-- | src/state/queries/preferences/moderation.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/state/queries/preferences/moderation.ts b/src/state/queries/preferences/moderation.ts index a26380a36..cdae52937 100644 --- a/src/state/queries/preferences/moderation.ts +++ b/src/state/queries/preferences/moderation.ts @@ -34,6 +34,24 @@ export const DEFAULT_LABEL_PREFERENCES: Record< impersonation: 'hide', } +/** + * More strict than our default settings for logged in users. + * + * TODO(pwi) + */ +export const DEFAULT_LOGGED_OUT_LABEL_PREFERENCES: Record< + ConfigurableLabelGroup, + LabelPreference +> = { + nsfw: 'hide', + nudity: 'hide', + suggestive: 'hide', + gore: 'hide', + hate: 'hide', + spam: 'hide', + impersonation: 'hide', +} + export const ILLEGAL_LABEL_GROUP: LabelGroupConfig = { id: 'illegal', title: 'Illegal Content', |