elixir-ecommerce-api
elixir-ecommerce-api copied to clipboard
An ecommerce API made on top of Phoenix and Elixir to be used in web/mobile applications
Auth
## Auth System - [x] Apply password encryption. - [ ] Define the custom information encrypted in the JWT tokens. - [x] Apply JWT for user tokens. ## Endpoints Auth...
Next steps - [x] Setup Phoenix project - [ ] [Define database structure](https://github.com/viniarruda/api-ecommerce/issues/8) Current Features - [ ] [Auth](https://github.com/viniarruda/api-ecommerce/issues/6) - [ ] [Users/Profile](https://github.com/viniarruda/api-ecommerce/issues/7) - [ ] Products - [ ]...
I'll put the migrations here as **Ecto.Migration** I think this way it'll be easier to understand the full table structure and the indexes as well. ## Users ``` def change...
## Types of User - User - Admin ## Endpoints Users - [ ] GET `/v1/users` - List all users (Admin Only) - [ ] GET `/v1/users/{:ID}` - Get user...