kemal-basic-auth
kemal-basic-auth copied to clipboard
Basic auth for your Kemal application
Hi @sdogruyol ! I'm now heavily using `basic_auth` and it would be nice if we can call it in several times for independency of pages. This PR enables it. ```crystal...
I was thinking if there should be implemented a method to clean up old handlers because each time `basic_auth` is called a new handler is added to `Kemal::Config::CUSTOM_HANDLERS` and they...
It would be nice if a user could define his or hers own authentication strategy. We could create an abstract class like: ``` class HTTPBasicAuth abstract class AuthenticationStrategy abstract def...