This commit is contained in:
Janis
2023-02-07 13:45:40 +01:00
parent d5f5b79140
commit d2ff34d3b6
70 changed files with 1388 additions and 8768 deletions

View File

@@ -5,9 +5,9 @@ export interface CreateArticle {
title: string;
markdown: string;
introduction: string;
categoryId: number;
categoryId: string;
contentTable: Prisma.JsonArray
imageId?: number;
imageUrl?: string;
}
export interface UpdateArticle {
@@ -15,9 +15,9 @@ export interface UpdateArticle {
title?: string;
markdown?: string;
introduction?: string;
categoryId?: number;
categoryId?: string;
contentTable?: Prisma.JsonArray
imageId?: number;
imageUrl?: string;
}
export interface CreateCategory {