Skip to content

Commit

Permalink
Samstag 16:45
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hornburger committed Jun 29, 2024
1 parent 100b82f commit 4b73956
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/datenstrukturen/mitarbeitersettingsstruktur_server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ interface IMitarbeitersettingsstruktur {
PunkteditorShowAnmerkungen: boolean;
PunkteditorShowBilder: boolean;
PunkteditorShowPlanmarke: boolean;
PunkteditorShowStatus: boolean;
};

const Mitarbeitersettingsshema = new mongoose.Schema({
Expand Down Expand Up @@ -142,6 +143,7 @@ const Mitarbeitersettingsshema = new mongoose.Schema({
PunkteditorShowAnmerkungen: {type: Boolean, default: false},
PunkteditorShowBilder: {type: Boolean, default: false},
PunkteditorShowPlanmarke: {type: Boolean, default: false},
PunkteditorShowStatus: {type: Boolean, default: false},

});

Expand Down

0 comments on commit 4b73956

Please sign in to comment.