Stuart Yamartino

Results 59 comments of Stuart Yamartino

It seems like from the implementation that I have, there are two methods that could be helpful to have build in. 1) Session creation with the 'generated_on_users_behalf' part made into...

I added this method to the user model to generate tokens easily: ```ruby def create_auth_token! Passwordless::Session.create( remote_addr: 'generated_by_rails', user_agent: 'generated_by_rails', authenticatable: self ).token end ```

Yeah I think that is smart actually, then `current_user` and everything doesn't get muddied up. Plus I do need the ability to set a custom redirect url after sign in...

Currently we don't support a way of doing this out of the box. For this to work we would need to add something like an `unbindEvents()` which would use the...

The only thing on the dom node will be the added event listeners. What did you have in mind @darkyen?

Sounds like this is part feature request, part bug report? I'm guessing the value going above 1 thing should be fixed too, I should have something to max out every...

Since email clients don't allow you to use external stylesheets or anything the code all needs to be compiled (styles inlined, divs generated into html tables, etc.). The best way...

Leaving this open so people know why you can't just "download a stylesheet" as good as that would be this is why this project exists. Here are the current ways...

Just out of curiosity, what are the units for those numbers? bytes, kb, mb, gb? Bummer that that is the case, however not totally surprising. Im hoping that performance will...

Interesting point, I've never actually tested that and I would believe that there would be issues with that. I'll take some stabs at debugging that. If you have a chance...