Implemented Feature editing UI
This commit is contained in:
@@ -1,4 +1,16 @@
|
||||
Meteor.publish("singleCharacter", function(characterId, userId){
|
||||
//TODO check if this characer can be viewed by this user
|
||||
return Characters.find({_id: characterId});
|
||||
});
|
||||
|
||||
Meteor.publish("characterContainers", function(characterId, userId){
|
||||
return Containers.find({charId: characterId});
|
||||
});
|
||||
|
||||
Meteor.publish("characterItems", function(characterId, userId){
|
||||
return Items.find({charId: characterId});
|
||||
});
|
||||
|
||||
Meteor.publish("characterFeatures", function(characterId, userId){
|
||||
return Features.find({charId: characterId});
|
||||
});
|
||||
Reference in New Issue
Block a user