Telegram auth (wip)

This commit is contained in:
vjrj 2018-01-26 12:49:53 +01:00
parent 5fe60d20d3
commit 58c54e5b94
7 changed files with 92 additions and 9 deletions

View file

@ -292,6 +292,6 @@ export default translate([], { wait: true })(withTracker((props) => {
center: props.center[0] !== null ? props.center : geolocation.get(),
distance: props.distance,
loadingSubs: !subscription.ready(),
currentSubs: UserSubsToFiresCollection.find({ owner: Meteor.userId(), type: 'web' }).fetch()
currentSubs: UserSubsToFiresCollection.find({ owner: Meteor.userId() }).fetch() // type: 'web'
};
})(SelectionMap));