Brighten high-readability profiles and default to level 5

This commit is contained in:
Remi
2025-10-18 21:39:23 +02:00
parent 2884c4af4c
commit 317151dfa7
6 changed files with 19 additions and 19 deletions

View File

@@ -19,7 +19,7 @@ const learnProfileSchema = new mongoose.Schema<LearnProfileDocument>(
unlockedModules: { type: [String], default: () => [] },
config: {
tts: { type: Boolean, default: false },
radioLevel: { type: Number, default: 4, min: 1, max: 5 },
radioLevel: { type: Number, default: 5, min: 1, max: 5 },
voice: { type: String, default: '', trim: true },
audioChallenge: { type: Boolean, default: false },
audioSpeed: { type: Number, default: 1, min: 0.5, max: 2 },