Added User profiles so users can change their username
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
Meteor.publish("characterList",function(userId){
|
||||
if(!userId) return;
|
||||
if(!userId) {
|
||||
this.ready();
|
||||
return;
|
||||
}
|
||||
return Characters.find({
|
||||
$or: [
|
||||
{readers: userId},
|
||||
{writers: userId},
|
||||
{owner: userId}
|
||||
]
|
||||
$or: [
|
||||
{readers: userId},
|
||||
{writers: userId},
|
||||
{owner: userId}
|
||||
]
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user