Meteor, ¿cómo acceder a un ayudante de otro ayudante?
Tengo un ayudante como
Template.user_profile.helpers({
user:function() {
return Meteor.users.find({'profile.front_name':Session.get('slug')}).fetch()[0];
}
});
Quiero agregar un ayudante a la colección que podría acceder aluser
ayudante y compara su_id
con el usuario actual_id
, para saber si el usuario está visitando su propio perfil. Estoy usando algo bastante feo:
Template.user_profile._tmpl_data.helpers.user()
El código final:
Template.user_profile.helpers({
user:function() {
return Meteor.users.find({'profile.front_name':Session.get('userId')}).fetch()[0];
},
isCurrentUser: function() {
return Template.user_profile._tmpl_data.helpers.user()._id === Meteor.userId();
}
});
¿Hay alguna forma mejor de acceder a otro ayudante?