mirror of
https://github.com/plankanban/planka.git
synced 2025-07-21 22:29:42 +02:00
Prepare for collection board type, refactoring, update dependencies
This commit is contained in:
parent
2d92ade8dc
commit
c6ee7d54bb
190 changed files with 2144 additions and 1817 deletions
|
@ -35,15 +35,16 @@ module.exports.routes = {
|
|||
'PATCH /api/boards/:id': 'boards/update',
|
||||
'DELETE /api/boards/:id': 'boards/delete',
|
||||
|
||||
'POST /api/boards/:boardId/lists': 'lists/create',
|
||||
'PATCH /api/lists/:id': 'lists/update',
|
||||
'DELETE /api/lists/:id': 'lists/delete',
|
||||
|
||||
'POST /api/boards/:boardId/labels': 'labels/create',
|
||||
'PATCH /api/labels/:id': 'labels/update',
|
||||
'DELETE /api/labels/:id': 'labels/delete',
|
||||
|
||||
'POST /api/lists/:listId/cards': 'cards/create',
|
||||
'POST /api/boards/:boardId/lists': 'lists/create',
|
||||
'PATCH /api/lists/:id': 'lists/update',
|
||||
'DELETE /api/lists/:id': 'lists/delete',
|
||||
|
||||
'GET /api/boards/:boardId/cards': 'cards/index',
|
||||
'POST /api/boards/:boardId/cards': 'cards/create',
|
||||
'GET /api/cards/:id': 'cards/show',
|
||||
'PATCH /api/cards/:id': 'cards/update',
|
||||
'DELETE /api/cards/:id': 'cards/delete',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue