feat: working on messages

This commit is contained in:
2024-12-30 18:16:25 +01:00
parent cfafcfaddf
commit bafe228911
18 changed files with 201 additions and 33 deletions
+1 -1
View File
@@ -19,5 +19,5 @@ export class Topic {
name: string;
@ManyToMany((type) => Word, (word) => word.topics)
words: Word[];
words: Promise<Word[]>;
}