Vulcan/packages/nova-comments/lib/permissions.js
2017-03-23 16:27:59 +09:00

26 lines
No EOL
553 B
JavaScript

import Users from 'meteor/vulcan:users';
const guestsActions = [
"comments.view.own",
"comments.view.all"
];
Users.groups.guests.can(guestsActions);
const membersActions = [
"comments.view.own",
"comments.view.all",
"comments.new",
"comments.edit.own",
"comments.remove.own",
"comments.upvote",
"comments.cancelUpvote",
"comments.downvote",
"comments.cancelDownvote"
];
Users.groups.members.can(membersActions);
const adminActions = [
"comments.edit.all",
"comments.remove.all"
];
Users.groups.admins.can(adminActions);