pull/29/head
Matthew 2020-11-19 21:23:53 -05:00
parent a0d12190d1
commit 0fe3435440
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ export interface StaffInterface extends Document {
gitlab: string, gitlab: string,
github: string, github: string,
bio: string, bio: string,
extension: string,
acknowledgements: string[], acknowledgements: string[],
} }
@ -23,6 +24,7 @@ const Staff: Schema = new Schema({
gitlab: String, gitlab: String,
github: String, github: String,
bio: String, bio: String,
extension: String,
acknowledgements: Array, acknowledgements: Array,
}); });