remove AiSummarized attribute from article view model

This commit is contained in:
2025-01-20 22:13:23 +01:00
parent b1236140b6
commit 0456c23e44
3 changed files with 5 additions and 15 deletions

View File

@@ -26,12 +26,11 @@ func (a *Article) Clone() *Article {
}
type ArticleViewModel struct {
Id int
Title string
PublishDate string
ShortSource string
Summary string
AiSummarized bool
Id int
Title string
PublishDate string
ShortSource string
Summary string
}
type ArticlePageViewModel struct {