/* * 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