Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Little typo on POST. | Adrián Oliva | 2023-05-25 | -1/+1 |
| | | | | Now it uses the page /todos. | |||
* | Added new comments and reformatted an empty function. | Adrián Oliva | 2023-05-25 | -4/+4 |
| | ||||
* | Added HTTP responses and text has max length. | Adrián Oliva | 2023-05-25 | -0/+10 |
| | | | | | HTTP responses to each action. Raising an error when "text" has surpassed the 120 character limit. | |||
* | Added a POST endpoint. | Adrián Oliva | 2023-05-25 | -6/+26 |
| | | | | | Submit a JSON formatted body with the values "text", "dueDate" and "priority" to submit a new to do. | |||
* | Added GET endpoint to list to dos. | Adrián Oliva | 2023-05-25 | -4/+203 |
| | | | | | Currently the directory is /v1/todos. It'll retrieve a list of all to dos. | |||
* | Added ToDos class. | Adrián Oliva | 2023-05-25 | -0/+124 |
| | | | | Class for saving all single to dos. | |||
* | First simple Get Request. | Adrián Oliva | 2023-05-24 | -0/+21 |
Returns a string with a "GET" request and on the page "/greet". |