devbug/app/models/v1/Invite.model.js

19 lines
380 B
JavaScript
Raw Normal View History

2019-06-24 16:45:22 +00:00
/*
* 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
}
},
2019-06-24 16:45:22 +00:00
}
module.exports = exports = Invite