mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
remove unneeded allow insert
This commit is contained in:
parent
056dfd1c4c
commit
c665e1818e
2 changed files with 2 additions and 4 deletions
|
@ -78,7 +78,6 @@ Comments.deny({
|
|||
});
|
||||
|
||||
Comments.allow({
|
||||
insert: canCommentById,
|
||||
update: canEditById,
|
||||
remove: canEditById
|
||||
});
|
||||
|
|
|
@ -111,9 +111,8 @@ Posts.deny({
|
|||
});
|
||||
|
||||
Posts.allow({
|
||||
insert: canPostById
|
||||
, update: canEditById
|
||||
, remove: canEditById
|
||||
update: canEditById,
|
||||
remove: canEditById
|
||||
});
|
||||
|
||||
clickedPosts = [];
|
||||
|
|
Loading…
Add table
Reference in a new issue