feathers-authentication-management
feathers-authentication-management copied to clipboard
Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication
### Summary resolves #225 I'll try to add tests while you review changes
Currently [password reset](https://github.com/feathersjs-ecosystem/feathers-authentication-management/blob/7b73637bb1b8204a368d11e3c9117a4a6e6f3d92/src/methods/reset-password.ts#L163) hashes the user's password before patching, which in feathers v5 is done usually in resolvers. this causes the password to be hashed two times and thus fail....
currently I'm passing my user object to the `resendVerifySignup` service method, and it is throwing error the issue seems to be with this piece of code, which I assume ensures...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.0 to 4.5.2. Changelog Sourced from vite's changelog. 4.5.2 (2024-01-19) fix: fs deny for case insensitive systems (#15653) (eeec23b), closes #15653 4.5.1 (2023-12-04) fix: backport #15223, proxy...
Due to fact that most realtional dbs do not support string[] inside single column, people cast verifyChanges to text type. When field is deserialized from db we need to parse...
I'm using postgresql v15.1 with a fresh installation of feathers Followed the setup instructions to the T In posting to my authentication 'users' endpoint: http://localhost:3030/auth-management/verify-signup-short I'm getting: `error: error: update...
Having a revokedAt field would allows to cheaply invalidate existing JWT tokens. ### Steps to reproduce 1. Have your session cookies compromised, Like LTT recently did 2. Change your password...
Is it possible for us to change the names of the user model fields that are required https://feathers-a-m.netlify.app/configuration.html#user-model-fields My database is in snake_case and having a few camelCase in there...
In dove version, but maybe in previous ones, I'm trying to use a SQLite 3 database. This issue is for SQLite 3, and concerns `verifyChanges`. When the user verify its...