fix: remove helmet user stories
fix: remove helmet user stories
This commit is contained in:
		
						commit
						46d8807939
					
				@ -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`
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -17,7 +17,6 @@
 | 
			
		||||
    <div id='userstories' style='margin-left: 5%; margin-top: 5%'>
 | 
			
		||||
      <h3>User Stories</h3>
 | 
			
		||||
      <ol>
 | 
			
		||||
        <li>Prevent cross site scripting(XSS attack).</li>
 | 
			
		||||
        <li>I can <b>POST</b> <code>/api/issues/{projectname}</code> with form data containing required <i>issue_title</i>, <i>issue_text</i>, <i>created_by</i>, and optional <i>assigned_to</i> and <i>status_text</i>.</li>
 | 
			
		||||
        <li>The object saved (and returned) will include all of those fields (blank for optional no input) and also include <i>created_on</i>(date/time), <i>updated_on</i>(date/time), <i>open</i>(boolean, true for open, false for closed), and <i>_id</i>.</li>
 | 
			
		||||
        <li>I can <b>PUT</b> <code>/api/issues/{projectname}</code> with a <i>_id</i> 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 <i>updated_on</i>. If no fields are sent return 'no updated field sent'.</li>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user