Vulcan/packages/nova-comments/lib/permissions.js

26 lines
No EOL
551 B
JavaScript

import Users from 'meteor/nova: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);