Costin Bereveanu

Results 10 comments of Costin Bereveanu

Same issue (#108) but with 892. Maybe there are a few pointers in there.

Got it working. As I'm not sure this code is maintained (or that my updates are good quality code, for that matter), I will add them here. I have encountered...

I know there was an issue, in the end my token class looked like this: ``` public class AccessToken { string _token; public AccessToken(string token) { _token = token; }...

Regexes would surely make it a lot more flexible, but there will be cases difficult to handle (what if I have a phrase that simply contains a period, no extra...

Thanks :) That would work as well, but I was suggesting to put a single escape sequence, after which every dot is ignored. Example: `[email protected] records...` This looks much cleaner...

Great! -- Costin Bereveanu Unless otherwise stated, this e-mail message, its attachments and all future replies and attachments related to it are to be considered confidential and exclusive property of...

+1. Autocomplete doesn't help. Save password popup keeps appearing after each character typed, with a username (email) value I typed tens of refreshes ago.

Here is my approach, which doesn't require modifying other files and may even be easy to integrate in the framework: Add a hidden field to your Repeatable: `Hidden::make('Key') ->default(fn ()...

This is related to the remember_me behavior built into the security system. It should not be mixed with the default authentication but it should be available separately. I've also implemented...