aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com (unfollow)
Commit message (Collapse)AuthorLines
2023-05-26Added a GET request with filters.Adrián Oliva-1/+53
Path is "/todos/filter". You have to pass as a body the arguments "name" for searching inside the to do's name, "priority" for specifying a priority level (or "All") and/or "done" for specifying if the to do is "Done" or "Undone" (or "All").
2023-05-26New DELETE request to delete a to do.Adrián Oliva-5/+22
Path is "/todos/{id}" to delete a to do with id {id}.
2023-05-25Added blank spaces everywhere.Adrián Oliva-1/+4
2023-05-25New GET for sorted to dos.Adrián Oliva-9/+71
GET request with path "/todos/{field}/{order}", where {field} can be "Id", "Priority" or "DueDate" for sorting the corresponding fields, and {order} can be "ASC" or "DESC" for ascending or descending order, respectively.
2023-05-25New PUT request to edit to dos.Adrián Oliva-3/+20
Using PUT request on path /todos/{id}, the to do with id {id} will be updated with the new information parsed as body.
2023-05-25New PUT to set undone.Adrián Oliva-0/+13
PUT request on path /todos/{id}/undone sets the to do with id {id} to undone. It also resets the 'doneDate' variable.
2023-05-25POST to set done.Adrián Oliva-5/+31
POST on /todos/{id}/done to set the to do with {id} done. :3
2023-05-25Extended "save" method.Adrián Oliva-1/+21
It now can overwrite existing todos if they share the same ID.
2023-05-25Little typo on POST.Adrián Oliva-1/+1
Now it uses the page /todos.
2023-05-25Added new comments and reformatted an empty function.Adrián Oliva-4/+4
2023-05-25Added HTTP responses and text has max length.Adrián Oliva-0/+10
HTTP responses to each action. Raising an error when "text" has surpassed the 120 character limit.
2023-05-25Added a POST endpoint.Adrián Oliva-6/+26
Submit a JSON formatted body with the values "text", "dueDate" and "priority" to submit a new to do.
2023-05-25Added GET endpoint to list to dos.Adrián Oliva-4/+203
Currently the directory is /v1/todos. It'll retrieve a list of all to dos.
2023-05-25Added ToDos class.Adrián Oliva-0/+124
Class for saving all single to dos.
2023-05-24First simple Get Request.Adrián Oliva-0/+19
Returns a string with a "GET" request and on the page "/greet".