Skip to content

kelvinsanchez15/exercise-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

APIs and Microservices Project #4: Exercise Tracker.

View project

Exercise Tracker

User Stories

  1. I can provide my own project, not the example url.
  2. I can create a user by posting form data username to /api/exercise/new-user and returned will be an object with username and _id.
  3. I can get an array of all users by getting api/exercise/users with the same info as when creating a user.
  4. I can add an exercise to any user by posting form data userId(_id), description, duration, and optionally date to /api/exercise/add. If no date supplied it will use current date. App will return the user object with the exercise fields added.
  5. I can retrieve a full exercise log of any user by getting /api/exercise/log with a parameter of userId(_id). App will return the user object with added array log and count (total exercise count).
  6. I can retrieve part of the log of any user by also passing along optional parameters of from & to or limit. (Date format yyyy-mm-dd, limit = int)

Additional Dependencies