diff --git a/README.md b/README.md index bae9744..8cb372e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ Project Issue Tracker 1) SET NODE_ENV to `test` without quotes and set DB to your mongo connection string in .env file 2) Complete the project in `routes/api.js` or by creating a handler/controller -3) You will add any security features to `server.js` -4) You will create all of the functional tests in `tests/2_functional-tests.js` +3) You will create all of the functional tests in `tests/2_functional-tests.js` diff --git a/views/index.html b/views/index.html index 2071269..b49fc66 100644 --- a/views/index.html +++ b/views/index.html @@ -17,7 +17,6 @@

User Stories

    -
  1. Prevent cross site scripting(XSS attack).
  2. I can POST /api/issues/{projectname} with form data containing required issue_title, issue_text, created_by, and optional assigned_to and status_text.
  3. The object saved (and returned) will include all of those fields (blank for optional no input) and also include created_on(date/time), updated_on(date/time), open(boolean, true for open, false for closed), and _id.
  4. I can PUT /api/issues/{projectname} with a _id and any fields in the object with a value to object said object. Returned will be 'successfully updated' or 'could not update '+_id. This should always update updated_on. If no fields are sent return 'no updated field sent'.