mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
24 lines
488 B
JavaScript
24 lines
488 B
JavaScript
import Users from 'meteor/vulcan:users';
|
|
|
|
const guestsActions = [
|
|
"posts.view.approved"
|
|
];
|
|
Users.groups.guests.can(guestsActions);
|
|
|
|
const membersActions = [
|
|
"posts.new",
|
|
"posts.edit.own",
|
|
"posts.remove.own",
|
|
];
|
|
Users.groups.members.can(membersActions);
|
|
|
|
const adminActions = [
|
|
"posts.view.pending",
|
|
"posts.view.rejected",
|
|
"posts.view.spam",
|
|
"posts.view.deleted",
|
|
"posts.new.approved",
|
|
"posts.edit.all",
|
|
"posts.remove.all"
|
|
];
|
|
Users.groups.admins.can(adminActions);
|