mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
Docker, update readme, update dependencies
This commit is contained in:
parent
2398199740
commit
adbcb67f03
30 changed files with 1202 additions and 1744 deletions
|
@ -9,55 +9,60 @@
|
|||
*/
|
||||
|
||||
module.exports.routes = {
|
||||
'POST /access-tokens': 'access-tokens/create',
|
||||
'POST /api/access-tokens': 'access-tokens/create',
|
||||
|
||||
'GET /users': 'users/index',
|
||||
'POST /users': 'users/create',
|
||||
'GET /users/me': 'users/show',
|
||||
'PATCH /users/:id': 'users/update',
|
||||
'POST /users/:id/upload-avatar': 'users/upload-avatar',
|
||||
'DELETE /users/:id': 'users/delete',
|
||||
'GET /api/users': 'users/index',
|
||||
'POST /api/users': 'users/create',
|
||||
'GET /api/users/me': 'users/show',
|
||||
'PATCH /api/users/:id': 'users/update',
|
||||
'POST /api/users/:id/upload-avatar': 'users/upload-avatar',
|
||||
'DELETE /api/users/:id': 'users/delete',
|
||||
|
||||
'GET /projects': 'projects/index',
|
||||
'POST /projects': 'projects/create',
|
||||
'PATCH /projects/:id': 'projects/update',
|
||||
'DELETE /projects/:id': 'projects/delete',
|
||||
'GET /api/projects': 'projects/index',
|
||||
'POST /api/projects': 'projects/create',
|
||||
'PATCH /api/projects/:id': 'projects/update',
|
||||
'DELETE /api/projects/:id': 'projects/delete',
|
||||
|
||||
'POST /projects/:projectId/memberships': 'project-memberships/create',
|
||||
'DELETE /project-memberships/:id': 'project-memberships/delete',
|
||||
'POST /api/projects/:projectId/memberships': 'project-memberships/create',
|
||||
'DELETE /api/project-memberships/:id': 'project-memberships/delete',
|
||||
|
||||
'POST /projects/:projectId/boards': 'boards/create',
|
||||
'GET /boards/:id': 'boards/show',
|
||||
'PATCH /boards/:id': 'boards/update',
|
||||
'DELETE /boards/:id': 'boards/delete',
|
||||
'POST /api/projects/:projectId/boards': 'boards/create',
|
||||
'GET /api/boards/:id': 'boards/show',
|
||||
'PATCH /api/boards/:id': 'boards/update',
|
||||
'DELETE /api/boards/:id': 'boards/delete',
|
||||
|
||||
'POST /boards/:boardId/lists': 'lists/create',
|
||||
'PATCH /lists/:id': 'lists/update',
|
||||
'DELETE /lists/:id': 'lists/delete',
|
||||
'POST /api/boards/:boardId/lists': 'lists/create',
|
||||
'PATCH /api/lists/:id': 'lists/update',
|
||||
'DELETE /api/lists/:id': 'lists/delete',
|
||||
|
||||
'POST /boards/:boardId/labels': 'labels/create',
|
||||
'PATCH /labels/:id': 'labels/update',
|
||||
'DELETE /labels/:id': 'labels/delete',
|
||||
'POST /api/boards/:boardId/labels': 'labels/create',
|
||||
'PATCH /api/labels/:id': 'labels/update',
|
||||
'DELETE /api/labels/:id': 'labels/delete',
|
||||
|
||||
'POST /lists/:listId/cards': 'cards/create',
|
||||
'GET /cards/:id': 'cards/show',
|
||||
'PATCH /cards/:id': 'cards/update',
|
||||
'DELETE /cards/:id': 'cards/delete',
|
||||
'POST /cards/:cardId/memberships': 'card-memberships/create',
|
||||
'DELETE /cards/:cardId/memberships': 'card-memberships/delete',
|
||||
'POST /cards/:cardId/labels': 'card-labels/create',
|
||||
'DELETE /cards/:cardId/labels/:labelId': 'card-labels/delete',
|
||||
'POST /api/lists/:listId/cards': 'cards/create',
|
||||
'GET /api/cards/:id': 'cards/show',
|
||||
'PATCH /api/cards/:id': 'cards/update',
|
||||
'DELETE /api/cards/:id': 'cards/delete',
|
||||
'POST /api/cards/:cardId/memberships': 'card-memberships/create',
|
||||
'DELETE /api/cards/:cardId/memberships': 'card-memberships/delete',
|
||||
'POST /api/cards/:cardId/labels': 'card-labels/create',
|
||||
'DELETE /api/cards/:cardId/labels/:labelId': 'card-labels/delete',
|
||||
|
||||
'POST /cards/:cardId/tasks': 'tasks/create',
|
||||
'PATCH /tasks/:id': 'tasks/update',
|
||||
'DELETE /tasks/:id': 'tasks/delete',
|
||||
'POST /api/cards/:cardId/tasks': 'tasks/create',
|
||||
'PATCH /api/tasks/:id': 'tasks/update',
|
||||
'DELETE /api/tasks/:id': 'tasks/delete',
|
||||
|
||||
'GET /cards/:cardId/actions': 'actions/index',
|
||||
'GET /api/cards/:cardId/actions': 'actions/index',
|
||||
|
||||
'POST /cards/:cardId/comment-actions': 'comment-actions/create',
|
||||
'PATCH /comment-actions/:id': 'comment-actions/update',
|
||||
'DELETE /comment-actions/:id': 'comment-actions/delete',
|
||||
'POST /api/cards/:cardId/comment-actions': 'comment-actions/create',
|
||||
'PATCH /api/comment-actions/:id': 'comment-actions/update',
|
||||
'DELETE /api/comment-actions/:id': 'comment-actions/delete',
|
||||
|
||||
'GET /notifications': 'notifications/index',
|
||||
'PATCH /notifications/:ids': 'notifications/update'
|
||||
'GET /api/notifications': 'notifications/index',
|
||||
'PATCH /api/notifications/:ids': 'notifications/update',
|
||||
|
||||
'GET /*': {
|
||||
view: 'index',
|
||||
skipAssets: true,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue