updates to partner database to include parameter for using dev commands

pull/1/head
Matthew 2024-04-05 20:13:11 -04:00
parent 1940d49884
commit 1e2b777672
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 5 additions and 0 deletions

View File

@ -62,7 +62,12 @@ export default class Partner implements SharedMemberAttributes {
public title: PartnerTitle | "Partner" | undefined; public title: PartnerTitle | "Partner" | undefined;
@prop() @prop()
//
public directReport: Partner | string | undefined; public directReport: Partner | string | undefined;
@prop()
// this field dictates if the partner is able to perform developer commands, such as "eval"
public canPerformDevCommands: boolean | undefined;
} }
export const PartnerModel = getModelForClass(Partner); export const PartnerModel = getModelForClass(Partner);