Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/suyious/othello-backend
- Owner: Suyious
- Created: 2023-09-04T19:27:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-04T09:46:14.000Z (about 1 year ago)
- Last Synced: 2024-01-27T03:41:13.437Z (11 months ago)
- Topics: rest-api, ruby-on-rails, web-development
- Language: Ruby
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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