Small wins style tickets (#88)

* wrap text

* version check!

* initial commit for "remove below score" in pipeline, or manually

* comments
This commit is contained in:
Shaheer Sarfaraz
2026-02-05 19:17:14 +00:00
committed by GitHub
parent c4749b4211
commit 6353a23f6f
22 changed files with 858 additions and 9 deletions
+7
View File
@@ -83,6 +83,13 @@ export const updateSettingsSchema = z
.max(100)
.nullable()
.optional(),
autoSkipScoreThreshold: z
.number()
.int()
.min(0)
.max(100)
.nullable()
.optional(),
})
.superRefine((data, ctx) => {
if (data.enableBasicAuth) {
+4
View File
@@ -589,6 +589,10 @@ export interface AppSettings {
missingSalaryPenalty: number;
defaultMissingSalaryPenalty: number;
overrideMissingSalaryPenalty: number | null;
// Auto-skip settings
autoSkipScoreThreshold: number | null;
defaultAutoSkipScoreThreshold: number | null;
overrideAutoSkipScoreThreshold: number | null;
}
export interface BackupInfo {