feat: POST method voor class geimplementeerd

This commit is contained in:
Adriaan Jacquet 2025-03-13 15:11:29 +01:00
parent a1aaf342d7
commit 79422ab854
8 changed files with 85 additions and 8 deletions

View file

@ -17,7 +17,7 @@ import { ClassRepository } from '../../data/classes/class-repository.js';
})
export class Class {
@PrimaryKey()
classId = v4();
classId? = v4();
@Property({ type: 'string' })
displayName!: string;