-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
As an admin user, I want to be able to register the different projects ioet has in order to list them and allow time-tracker users to select the project for what they are working on.
We need endpoints so UI can call them to perform these operations. The following endpoints are needed.
- Create project endpoint:
POST /projects
BODY
{
"name": "project-name",
"details":"project-details",
"status":"Active/Inactive"
}
- Update project endpoint:
PUT /projects/{project-id}
BODY
{
"name": "project-name",
"details":"project-details",
"status":"Active/Inactive"
}
- Get projects endpoint:
GET /projects
Acceptance Criteria
- The above-mentioned endpoints should have been created
- All the code needs to have at least 80% code coverage
- Each endpoint needs to have e2e tests see Add e2e tests #2
Metadata
Metadata
Assignees
Labels
No labels