tmeasday / meteor-router

MIT License
366 stars 76 forks source link

Access to userId in serverside paths? #94

Closed MarcusRiemer closed 11 years ago

MarcusRiemer commented 11 years ago

Is there a way to access the ID of the calling user in serverside paths? Basicly like when using Meteor.methods()?

tmeasday commented 11 years ago

No, due to the way accounts is implemented in Meteor (via LocalStorage, not cookies).

MarcusRiemer commented 11 years ago

Bummer, so that's why I couldn't find any cookies for my page. I guess I will roll out my own then. And thanks a lot for your great component!