feat(core-cms): compose @repo/blog/cms into payload config

This commit is contained in:
2026-05-04 22:29:50 +02:00
parent 1d59698ebe
commit a92341fb74
9 changed files with 93 additions and 24 deletions

View File

@@ -12,7 +12,7 @@ function generateSlug(title: string): string {
export async function createArticleUseCase(input: {
title: string;
content: unknown;
content?: unknown;
authorId: string;
slug?: string;
}): Promise<Article> {