From 311462dd80a1b51d67b5ab15954b17318eb263f2 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 11 Feb 2023 23:23:45 -0500 Subject: [PATCH] remove post-nominals and add isManager property --- mongodb/Staff.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mongodb/Staff.ts b/mongodb/Staff.ts index ec261f1..5d50021 100644 --- a/mongodb/Staff.ts +++ b/mongodb/Staff.ts @@ -13,9 +13,6 @@ export default class Staff { @prop() public dept: string; - @prop() - public pn: string[]; - @prop() public emailAddress: string; @@ -27,4 +24,7 @@ export default class Staff { @prop() public additionalRoles: string[]; + + @prop({ default: false }) + public isManager: boolean; }