Vulcan/packages/example-forum/lib/modules/voting.js

6 lines
180 B
JavaScript
Raw Normal View History

import { makeVoteable } from 'meteor/vulcan:voting';
2017-09-13 16:11:27 +02:00
import Posts from './posts/index.js';
import Comments from './comments/index.js';
makeVoteable(Posts);
makeVoteable(Comments);