pass user object to profileUrl helper instead of id

Because the allUsers publication is no longer available outside of reactive-table data context.
This commit is contained in:
Jeremy Shimko 2015-02-16 17:56:14 -05:00
parent 5997aafe87
commit 16d56d197c

View file

@ -1,3 +1,3 @@
<template name="users_list_username">
<a href="{{profileUrl _id}}">{{username}}</a>
<a href="{{profileUrl this}}">{{username}}</a>
</template>