12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * Models / Schema
- * (for reference)
- *
- * @type {Object}
- */
- // Message: {
- // attributes: {
- // subject: 'string',
- // body: 'string',
- // to: {
- // collection: 'user'
- // },
- // cc: {
- // collection: 'user'
- // },
- // bcc: {
- // collection: 'user'
- // },
- // from: {
- // model: 'user'
- // }
- // }
- // };
- // User: {
- // attributes: {
- // email: 'string'
- // }
- // };
|