issues
search
j-peace
/
getting-things-done-server
0
stars
0
forks
source link
Crud of tasks
#5
Closed
j-peace
closed
6 months ago
j-peace
commented
6 months ago
Accpted criteria
1) User should be able to create a task that belongs to an action with the fileds mentioned here:
https://github.com/tiagopazhs/getting-things-done-server/issues/2
.
2) Show all tasks.
3) Show an task by Id.
4) Show all tasks by action id.
5) Update a task by id (can update one or more fields)
j-peace
commented
6 months ago
Changes:
Create the CRUD operations of tasks.
Create a relation of Tasks and Project.
How to test:
Use the public postman file located in
https://app.getpostman.com/join-team?invite_code=cad9d422354b2338354458618cdd0176&target_code=ff9692ff1de96283049dc5f5e4a735b4
j-peace
commented
6 months ago
Pendent:
Create a validation of existing actions inside of TASKS/CONTROLLER/CREATE. - OK
Implement the getTasksById method inside of ACTIONS/CONTROLLER. - OK
Create a validation before to delete actions with existing tasks inside of TASKS/CONTROLLER/DELETE. - OK
Accpted criteria