1
0
Fork 0
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:
Samuel 2025-07-13 01:56:44 +02:00
parent d6cbb889fb
commit 846b0579b3
7 changed files with 243 additions and 0 deletions

View file

@ -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',