## Auth System - [x] Apply password encryption. - [ ] Define the custom information encrypted in the JWT tokens. - [x] Apply JWT for user tokens. ## Endpoints Auth - [x] POST `/v1/auth/sign_in` - Login user into platform and return a JWT token. - [x] POST `/v1/auth/sign_up` - Register user into platform and return a JWT token. - [ ] POST `/v1/auth/forgot_password` - Sends user an email with a recovery link (with token). - [ ] POST `/v1/auth/change_password` - Update user password with a recovery token.
Auth System
Endpoints Auth
/v1/auth/sign_in- Login user into platform and return a JWT token./v1/auth/sign_up- Register user into platform and return a JWT token./v1/auth/forgot_password- Sends user an email with a recovery link (with token)./v1/auth/change_password- Update user password with a recovery token.