A simple todolist written in Symfony
Find a file
2025-02-03 16:58:37 +01:00
bin initial commit 2025-02-01 19:04:11 +01:00
config added rename for todolist 2025-02-02 22:34:41 +01:00
migrations migrate 2025-02-03 16:45:38 +01:00
public initial commit 2025-02-01 19:04:11 +01:00
src pick up 2025-02-03 16:56:17 +01:00
.gitignore initial commit 2025-02-01 19:04:11 +01:00
composer.json fuck 2025-02-01 23:08:08 +01:00
composer.lock fuck 2025-02-01 23:08:08 +01:00
README.md Update README.md 2025-02-03 16:58:37 +01:00
symfony.lock added todostuff 2025-02-01 20:31:15 +01:00

This is a simple API for a todo-list application, written in Symfony as a learning experience.

Name Method Scheme Host Path
create_item POST ANY ANY /item/create
change_item_status PUT POST ANY ANY
change_item_description PUT ANY ANY /item/description [Not implemented]
delete_item DELETE ANY ANY /item/delete [Not Implemented]
app_random_word ANY ANY ANY /random/word [Easter egg]
recent_lists GET ANY ANY /lists
create_list POST ANY ANY /list/create
rename_list PUT ANY ANY /list/name/{id}
delete_list DELETE ANY ANY /list/delete/{id}