aboutsummaryrefslogtreecommitdiff
path: root/src/api/axios_methods.js (unfollow)
Commit message (Collapse)AuthorLines
2023-05-29New Average time added.v1.0.0devAdrián Oliva-0/+14
It displays the time in average of completing to dos.
2023-05-29IT NOW HAS PAGING.Adrián Oliva-2/+2
2023-05-29First instance for pagination.Adrián Oliva-0/+49
Sorting and Filtering now WON'T be computed on Front End, but on Back End instead.
2023-05-28Little bug on last index.Adrián Oliva-0/+14
Because the Front End wasn't tracking the deleted items, the indexes between the database and the front end were not matching.
2023-05-27Can now set a to do as done or undone.Adrián Oliva-0/+26
2023-05-27Delete a specific to do with API.Adrián Oliva-0/+13
2023-05-27Can now edit to dos on Back End.Adrián Oliva-0/+17
2023-05-27New to do now communicates to API.Adrián Oliva-1/+18
WE'RE DOING IT!!!!
2023-05-27List of to dos is initialized on database.Adrián Oliva-4/+4
At the beginning, the app will fetch the to dos from the back end and write all of them on Redux.
2023-05-26Using Axios to send HTTP requests.Adrián Oliva-0/+15
Defining API and method GET to retrieve all to dos.