feat: Implement create API Token endpoint

This commit is contained in:
Faruk AYDIN
2025-04-08 11:34:45 +02:00
parent 59510dcb0a
commit 540525d6fb
7 changed files with 91 additions and 0 deletions

View File

@@ -9,6 +9,8 @@ class ApiToken extends Base {
properties: {
id: { type: 'string', format: 'uuid' },
token: { type: 'string', minLength: 32 },
createdAt: { type: 'string' },
updatedAt: { type: 'string' },
},
};