mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
9 lines
378 B
JavaScript
9 lines
378 B
JavaScript
import { makeVoteable, addVoteType } from 'meteor/vulcan:voting';
|
|
import Movies from './movies/index.js';
|
|
|
|
makeVoteable(Movies);
|
|
|
|
addVoteType('angry', { power: -1, exclusive: false});
|
|
addVoteType('sad', { power: -1, exclusive: false});
|
|
addVoteType('happy', { power: 1, exclusive: false});
|
|
addVoteType('laughing', { power: 1, exclusive: false});
|