We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's a new feature to allow CRUD on User. User is someone using the application.
We'll create a Controller class that provides the following functionality:
get: retrieve user Parameters : Return: If parameter is null, return all users otherwise those requested Error:
post: create a new user Parameters : Return: All properties but id of the user stored in DB. Error :
put: modify a specific user Parameters: Not null Return: All properties but id of the user stored in DB. Error :
delete: delete a specific user Parameters: Not null Return: All properties but id of the userstored in DB. Error :
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CRUD on User
It's a new feature to allow CRUD on User. User is someone using the application.
Model
Services
We'll create a Controller class that provides the following functionality:
get: retrieve user
Parameters :
Return: If parameter is null, return all users otherwise those requested
Error:
post: create a new user
Parameters :
Return: All properties but id of the user stored in DB.
Error :
put: modify a specific user
Parameters: Not null
Return: All properties but id of the user stored in DB.
Error :
delete: delete a specific user
Parameters: Not null
Return: All properties but id of the userstored in DB.
Error :
The text was updated successfully, but these errors were encountered: