wejsv2old-plugin-rating
Version:
We.js v2 Old - Rating Plugin
35 lines (33 loc) • 504 B
JavaScript
/**
* RatingVote
*
* @module :: Rating
* @description :: Rating Records
*
*/
module.exports = {
schema: true,
attributes: {
modelId: {
type: 'integer',
required: true
},
manager: {
model: 'ratingManager',
required: true
},
terms: {
collection: 'term',
via: 'termsRated',
required: true
},
rate: {
type: 'integer',
required: true
},
creator: {
model: 'User',
required: true
}
}
};