mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
18 lines
274 B
JavaScript
18 lines
274 B
JavaScript
/*
|
|
|
|
Posts permissions
|
|
|
|
*/
|
|
|
|
import Users from 'meteor/vulcan:users';
|
|
|
|
const membersActions = [
|
|
'movies.new',
|
|
'movies.edit.own',
|
|
'movies.remove.own',
|
|
'movies.laughing',
|
|
'movies.happy',
|
|
'movies.angry',
|
|
'movies.sad',
|
|
];
|
|
Users.groups.members.can(membersActions);
|