feat: オリジナルの作成日時追加( #101 ) (#117)

#101 オリジナルの作成日時(より前)の自動設定

#101 余白追加

#101 余白追加

#101 オリジナルの作成日時,フォームにフィールド追加

#101 マイグレとコントローラ

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #117
This commit was merged in pull request #117.
This commit is contained in:
2025-09-22 05:05:30 +09:00
parent 3119d475e5
commit 6bca0215d8
9 changed files with 194 additions and 28 deletions
+11 -8
View File
@@ -17,14 +17,17 @@ export type NicoTag = Tag & {
linkedTags: Tag[] }
export type Post = {
id: number
url: string
title: string
thumbnail: string
thumbnailBase: string
tags: Tag[]
viewed: boolean
related: Post[] }
id: number
url: string
title: string
thumbnail: string
thumbnailBase: string
tags: Tag[]
viewed: boolean
related: Post[]
createdAt: string
originalCreatedFrom: string | null
originalCreatedBefore: string | null }
export type SubMenuItem = {
component: React.ReactNode