persona
persona copied to clipboard
Opinionated user management service for AdonisJs
I'm currently trying to upgrade a project from adonis v4 to v5 and it seems like Persona is not compatible yet. It would be great if Persona would be compatible,...
Hello is it possible to set password complexity before creating a user ?
Hi, i'm using mongodb as Database, with [lucid-mongo](https://github.com/duyluonglc/lucid-mongo). Unfortunately when Person uses the internal method `getUserByUids()` *(in the methods **verify()** and **forgotPassword()**)* fails because tries to search users using the...
I'm using this library, and I just realized that some of my users don't verify their emails in their first 24h.... so I would like to change this line https://github.com/adonisjs/adonis-persona/blob/develop/src/Persona.js#L160...
If I enter the wrong credentials the application breaks in the following.  Wasn't it just returning the error for not being able to log...
Hi, i know that i must use querystring to encode the token... i have following view code: ``` @section('content') Sehr geehrte(r) {{ user.firstName }} {{ user.lastName }}, Sie haben fΓΌr...
My use case specifically is that I am using 'api-only' for Adonis, and that the emails being sent might have different end points for verifying the email depending on which...
Hi. Adonisjs stable version is currently on version 4.1 and Persona is asking for 5.0.6. How can I use it on Adonis 4.1?
After using forgotPassword(), it created the record in tokens table, but it doesn't add anything to "is_revoked" field. I've tried changing the datatype for "is_revoked" to TINYINT, BOOLEAN, BOOL, INT...
Hi @thetutlage I added the `expires_at` field to tokens as we discussed in #24. So far it works, but I have two questions I'd like to get your input on:...