cyntaria / ConstructionERP-Backend

A REST API backend system for the construction ERP software made with NodeJS
Creative Commons Zero v1.0 Universal
0 stars 0 forks source link

As a product owner, I should be able to delete a role, so that I can remove old or inconsistent roles #37

Open arafaysaleem opened 3 years ago

arafaysaleem commented 3 years ago

Summary

As a product owner, I should be able to delete a role, so that I can remove old or inconsistent roles.

Acceptance Criteria

GIVEN a product owner is deleting a role in the desktop app WHEN the app hits the roles/:id endpoint with a valid DELETE request, containing the path parameter:

THEN the app should receive a status 200 AND in the response, the following information should be returned:

Sample Request/Sample Response

headers: {
    error: 0,
    message: "The specified item was deleted successfully"
}
body: {}

Resources

Dev Notes

{Some complementary notes if necessary}

Testing Notes

A typical test case for a DELETE request would look like this:

  1. Create a new role with a POST request to /roles endpoint
  2. With the id returned from the POST, make a DELETE request to /roles/:id endpoint
  3. A subsequent GET request to /roles/:id endpoint should return a 404 not found status code.