cloudservices/src/models/Account.ts

42 lines
858 B
TypeScript
Raw Normal View History

2019-10-14 15:46:10 -04:00
import { Document, Schema, model } from 'mongoose';
export interface AccountInterface extends Document {
username: string,
2019-10-14 15:46:10 -04:00
userID: string,
emailAddress: string,
createdBy: string,
createdAt: Date,
locked: boolean,
2019-11-16 19:24:08 -05:00
bearerSignature: string,
2019-10-14 15:46:10 -04:00
permissions: {
support: boolean,
staff: boolean,
supervisor: boolean,
communityManager: boolean,
engineer: boolean
},
root: boolean
2019-11-16 20:13:59 -05:00
hash: boolean
2019-10-14 15:46:10 -04:00
}
const Account: Schema = new Schema({
username: String,
2019-10-14 15:46:10 -04:00
userID: String,
emailAddress: String,
createdBy: String,
createdAt: Date,
locked: Boolean,
2019-11-16 19:24:08 -05:00
bearerSignature: String,
2019-10-14 15:46:10 -04:00
permissions: {
support: Boolean,
staff: Boolean,
supervisor: Boolean,
communityManager: Boolean,
2019-10-14 23:37:04 -04:00
engineer: Boolean,
2019-10-14 15:46:10 -04:00
},
2019-10-14 23:37:04 -04:00
root: Boolean,
2019-11-16 20:13:59 -05:00
hash: Boolean,
2019-10-14 15:46:10 -04:00
});
2019-10-14 23:37:04 -04:00
export default model<AccountInterface>('Account', Account);