Added Soft remove and a character asset parenting system
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
Meteor.publish("characterList",function(userId){
|
||||
if(!userId) return;
|
||||
return Characters.find({$or: [ {readers: userId}, {writers: userId}, {owner: userId} ] });
|
||||
return Characters.find({
|
||||
$or: [
|
||||
{readers: userId},
|
||||
{writers: userId},
|
||||
{owner: userId}
|
||||
]
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user