-
Notifications
You must be signed in to change notification settings - Fork 27
Feature/task03/completeUserId/tasks_function #107
New issue
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
Feature/task03/completeUserId/tasks_function #107
Conversation
New changes from NSC repo PR67 into Fork
update from NSC repo
Hi Ahmed, you need to add your documentation to complete this Sprint. Everything else looks good! Good job |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good updates. Just don't forget to include your documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahmed, you just need to add your documentation. thank you
Resolves Task/BUG :#93
To Test API function users/{userId}/tasks
Test this function on Azure:
API call - users/2/tasks
This code completes the implementation of the Azure function for the previous PR Feature/task03/completeUserId/tasks_function #107 that is already merged into the dev branch
- The following methods got implemented and Updated: GET/POST
Once this PR gets approved the function will be deployed automatically into the development branch
To test this feature locally make sure to have the following:
-In local.settings.json at the root of the functions folder, enter in the values for the keys below in the following format: { "Values": { "KEY": "VALUE" } }
ENV_DATABASE_NAME (name of the database)
ENV_DATABASE_PASSWORD
ENV_DATABASE_SERVER (this is the server location)
ENV_DATABASE_USERNAME
You can click F5 or click run->Start Debugging in the functions folder to start it up
The GET request takes the userId and returns all a specific user by their Id.
The POST request is not allowed for this call.
Error handling and Debug handling included in this feature
time spent:
I spent 10 hours completing this task.