feat(blog): show review feedback in admin
Some checks failed
Frontend CI/CD / build (push) Has been cancelled
Frontend CI/CD / deploy (push) Has been cancelled

This commit is contained in:
2026-06-13 00:00:40 +03:30
parent 489e46dd06
commit 053b742f89
3 changed files with 79 additions and 4 deletions

View File

@@ -309,6 +309,7 @@ export interface PostListSchema {
export interface PostDetailSchema extends PostListSchema {
content: string;
content_html?: string;
review_note?: string;
og_image_url?: string | null;
views_count?: number;
assets?: PostAssetSchema[];