You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devbug/app/models/v1/Invite.model.js

19 lines
380 B

/*
* Invite Model
* -------------------------------------------------------------
* Put some description here!
*/
const Invite = {
schema: {
project_id: String,
by_user_id: String,
api_type: String,
created_on: Date,
used: {
type: Boolean,
default: false
}
},
}
module.exports = exports = Invite