jaleonardo
jaleonardo
Added procedure to process additional data sent during registration. Other changes: - Minor edit to readme to improve readability of the Firebase setup procedure. - Additional properties for dbAuth for...
Added custom event to be triggered when the darkmode is toggled. Sample use: ``` document.body.addEventListener("darkmode-toggled", function(event) { if(event.detail.darkModeOn){ //do something like adjust images to be more visible, or anything else...
Not an issue, just a question. Can be closed immediately if considered irrelevant. 😁 I'm just been reading about htmx, how it supposedly simplifies things in webdev. I was just...
Updated middleware to trim leading and/or trailing spaces in username. Before this, if a username is `jsmith`, `jsmith ` or ` jsmith` will result to authentication failed due to extra...
Refer to [935](https://github.com/mevdschee/php-crud-api/issues/935) Add new property `dbAuth.updateSessionData` to indicate whether the session data will be updated every `x` minutes. Also new session key (`updatedAt`) to record the time of creation/updating...
I'm using dbAuth for a project and one issue I encounter is that the username is not sanitized even if the sanitation middleware is active. For example, a user can...
I was just trying to use Universally Unique Lexicographically Sortable Identifier [ULID](https://github.com/robinvdvleuten/php-ulid) with this library and was able to insert the ULID via the multitenancy middleware as follows: ``` 'multiTenancy.handler'...