
* Added user registration process * Added user password reset process * Added user email verification proccess * update token id to return custom claims * update access token instrospection to return user custom claims * Migrated to Doctrine ORM ( from eloquent) * Added User CRUD * Added User Groups CRUD * Refactoring * Bug Fixing * added user registration oauth2 endpoint POST /api/v1/user-registration-requests payload * first_name ( required ) * last_name ( required) * email ( required ) * country ( optional ) scope user-registration ( private scope) Change-Id: I36e8cd4473ccad734565051442e2c6033b204f27
8 lines
261 B
Bash
Executable File
8 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
composer dump-autoload --optimize;
|
|
php artisan doctrine:generate:proxies
|
|
php artisan doctrine:clear:metadata:cache
|
|
php artisan doctrine:clear:query:cache
|
|
php artisan doctrine:clear:result:cache
|
|
php artisan route:clear
|
|
php artisan route:cache |