2019-06-24 16:45:22 +00:00
|
|
|
/*
|
|
|
|
* Invite Model
|
|
|
|
* -------------------------------------------------------------
|
|
|
|
* Put some description here!
|
|
|
|
*/
|
|
|
|
const Invite = {
|
|
|
|
project_id: String,
|
|
|
|
by_user_id: String,
|
2019-07-24 17:05:27 +00:00
|
|
|
api_type: String,
|
2019-06-24 16:45:22 +00:00
|
|
|
created_on: Date,
|
|
|
|
used: { type: Boolean, default: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = Invite
|