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:
@@ -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) {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user