-
Notifications
You must be signed in to change notification settings - Fork 0
Backend Routes
Joshua edited this page Jan 21, 2019
·
1 revision
GET / static_pages#root
-
POST /api/users- sign up
-
POST /api/session- login -
DELETE /api/session- logout
-
GET api/boards- get boards -
POST /api/boards- create new board -
PATCH /api/boards/:id- update board -
DELETE /api/boards/:id- delete board
-
POST /api/boards/:board_id/lists- create list belonging to the board -
PATCH /api/boards/:board_id/lists/:id- edit list -
DELETE /api/boards/:board_id/lists/:id- delete list
-
GET /lists/:list_id/cards- get all cards for a list -
POST /lists/:list_id/cards- create new card -
GET /api/cards/:id- get card info -
PATCH /api/cards/:id- edit card -
DELETE api/cards/:id- delete card
-
POST /api/cards/:card_id/comments- create card comment -
DELETE /api/comments/:id- delete comment