mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
feat: add routes for creating, cycling and deleting apiKeys
This commit is contained in:
parent
d6cbb889fb
commit
846b0579b3
7 changed files with 243 additions and 0 deletions
|
@ -83,6 +83,10 @@ module.exports.routes = {
|
|||
'POST /api/users/:id/avatar': 'users/update-avatar',
|
||||
'DELETE /api/users/:id': 'users/delete',
|
||||
|
||||
'POST /api/users/:id/api-key': 'api-key/create',
|
||||
'PATCH /api/users/:id/api-key': 'api-key/cycle',
|
||||
'DELETE /api/users/:id/api-key': 'api-key/delete',
|
||||
|
||||
'GET /api/projects': 'projects/index',
|
||||
'POST /api/projects': 'projects/create',
|
||||
'GET /api/projects/:id': 'projects/show',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue