Add sortSidebarVisibility field to user settings schema
All checks were successful
farmcontrol/farmcontrol-api/pipeline/head This commit looks good
All checks were successful
farmcontrol/farmcontrol-api/pipeline/head This commit looks good
This update introduces a new field, `sortSidebarVisibility`, to the user settings schema, allowing for more flexible management of sidebar visibility preferences. The field is defined as a mixed type with a default value of an empty object, enhancing the schema's capabilities for user customization.
This commit is contained in:
parent
fcdd76f891
commit
d3adf00477
@ -16,6 +16,10 @@ const userSettingsSchema = new mongoose.Schema({
|
|||||||
type: Schema.Types.Mixed,
|
type: Schema.Types.Mixed,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
},
|
},
|
||||||
|
sortSidebarVisibility: {
|
||||||
|
type: Schema.Types.Mixed,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
columnVisibility: { type: Schema.Types.Mixed, default: () => ({}) },
|
columnVisibility: { type: Schema.Types.Mixed, default: () => ({}) },
|
||||||
collapseState: { type: Schema.Types.Mixed, default: () => ({}) },
|
collapseState: { type: Schema.Types.Mixed, default: () => ({}) },
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user