Secure Login
Hi, atm it does not seem like there is a way for a proper authenticated login. Are there any plans for it?
Oops sorry for wait, I miss this message,
You have to control the access where you out this templete, and you can control the access to data with this 2 options
publishChats: function(roomId, limi){ //server
//here the context is the same for a publication, that mean you have access to this.userId who are asking for subscribe.
// for example
return isLoggedAndHasAccessToSeeMessage(this.userId)
},
allow: function(message, roomId, username, avatar, name){
//here the context is the same for a Method, thats mean you hace access to this.userId also
// for example
return isLoggedAndHasAccessSendMessages(this.userId)
return true
},
Ahh thanks. Do you plan to provide react support. Using blaze2react libs works, but the autoscroll is breaking :( I haven't been able to figure out why.
No react plans for this moments, maybe in a future. PR are welcome. I will work in autoscroll next week
You know, my knowledge about react are basic, I want to learn, maybe this is a great opportunity, definitely i will plan to remake for React.
Sorry for my english
No worries.
A react version would be awesome.