refactor: Move api token related files to ee

This commit is contained in:
Faruk AYDIN
2025-04-08 10:54:04 +02:00
parent 847197d28d
commit 616c1a92bc
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import Base from './base.js';
class ApiToken extends Base {
static tableName = 'api_tokens';
static jsonSchema = {
type: 'object',
required: ['token'],
properties: {
id: { type: 'string', format: 'uuid' },
token: { type: 'string', minLength: 32 },
},
};
}
export default ApiToken;