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

6 lines
188 B
JavaScript
Raw Normal View History

import { makeVoteable } from 'meteor/vulcan:voting';
2017-09-29 09:19:23 +09:00
import { Posts } from './posts/index.js';
import { Comments } from './comments/index.js';
makeVoteable(Posts);
makeVoteable(Comments);