Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikkiedev/symfony-todolist
A simple todolist written in Symfony
https://github.com/nikkiedev/symfony-todolist
symfony todo
Last synced: 2 days ago
JSON representation
A simple todolist written in Symfony
- Host: GitHub
- URL: https://github.com/nikkiedev/symfony-todolist
- Owner: NikkieDev
- Created: 2025-02-01T18:01:15.000Z (14 days ago)
- Default Branch: master
- Last Pushed: 2025-02-03T15:58:37.000Z (12 days ago)
- Last Synced: 2025-02-03T16:34:37.355Z (12 days ago)
- Topics: symfony, todo
- Language: PHP
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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 | /item/status/{id} |
| 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} |