Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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} |