20 lines
399 B
JavaScript
20 lines
399 B
JavaScript
import ArchivedCreatures from '/imports/api/creature/archive/ArchivedCreatures.js';
|
|
|
|
Meteor.publish('archivedCreatures', function(){
|
|
this.autorun(function (){
|
|
var userId = this.userId;
|
|
if (!userId) {
|
|
return [];
|
|
}
|
|
return ArchivedCreatures.find({
|
|
owner: userId,
|
|
}, {
|
|
fields: {
|
|
creature: 1,
|
|
owner: 1,
|
|
}
|
|
}
|
|
);
|
|
});
|
|
});
|