Files
lunchrun.me/api/models/Run.js
2014-03-12 21:49:16 -05:00

30 lines
548 B
JavaScript

/**
* Run
*
* @module :: Model
* @description :: A short summary of how this model works and what it represents.
* @docs :: http://sailsjs.org/#!documentation/models
*/
module.exports = {
attributes: {
creatorName: {
type: 'string',
required: true
},
creatorEmail: {
type: 'email',
required: true
},
invitees: {
type: 'array'
},
menuUrl: {
type: 'url'
},
restaurant: 'string'
}
};