28 lines
565 B
TypeScript
28 lines
565 B
TypeScript
import { Document, Schema, model } from 'mongoose';
|
|
|
|
export interface StaffInterface extends Document {
|
|
name: string,
|
|
userID: string,
|
|
title: string,
|
|
dept: string,
|
|
pn: string[],
|
|
emailAddress: string,
|
|
extension: string,
|
|
acknowledgements: string[],
|
|
additionalRoles: string[]
|
|
}
|
|
|
|
const Staff: Schema = new Schema({
|
|
name: String,
|
|
userID: String,
|
|
title: String,
|
|
dept: String,
|
|
pn: Array,
|
|
emailAddress: String,
|
|
extension: String,
|
|
acknowledgements: Array,
|
|
additionalRoles: Array,
|
|
});
|
|
|
|
export default model<StaffInterface>('Staff', Staff);
|