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

13 lines
285 B

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