Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/suyious/othello-backend

Backend For Othello: Task Management with Kanban/Scrum
https://github.com/suyious/othello-backend

rest-api ruby-on-rails web-development

Last synced: about 1 month ago
JSON representation

Backend For Othello: Task Management with Kanban/Scrum

Awesome Lists containing this project

README

        

# Othello: REST API

This is a Ruby on Rails REST API server application.

> Source for FrontEnd Client: [Othello](https://github.com/Suyious/Othello)

### Routes
| Prefix | Verb | URI Pattern | Controller#Action |
|---|---|---|---|
| boards | GET | /boards | boards#index
| | POST | /boards | boards#create
| board | GET | /boards/:id | boards#show
| | PATCH | /boards/:id | boards#update
| | PUT | /boards/:id | boards#update
| | DELETE | /boards/:id | boards#destroy
| board_lists | GET | /boards/:board_id/list | lists#index
| | POST | /boards/:board_id/lists | lists#create
| list | PATCH | /lists/:id | lists#update
| | PUT | /lists/:id | lists#update
| | DELETE | /lists/:id | lists#destroy