UNPKG

wejsv2old-plugin-rating

Version:
35 lines (33 loc) 504 B
/** * 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 } } };