File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 21
21
<dependency >
22
22
<groupId >io.github.nhk-news-web-easy</groupId >
23
23
<artifactId >nhk-easy-entity</artifactId >
24
- <version >1.0.4 </version >
24
+ <version >1.0.5 </version >
25
25
</dependency >
26
26
<dependency >
27
27
<groupId >org.jetbrains.kotlin</groupId >
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ class NewsController : BaseController() {
38
38
dto.newsId = news.newsId
39
39
dto.title = news.title
40
40
dto.titleWithRuby = news.titleWithRuby
41
+ dto.outline = news.outline
41
42
dto.outlineWithRuby = news.outlineWithRuby
42
43
dto.body = news.body
43
44
dto.bodyWithoutRuby = news.bodyWithoutRuby
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ class NewsDto {
9
9
10
10
var titleWithRuby = " "
11
11
12
+ var outline: String? = " "
13
+
12
14
var outlineWithRuby = " "
13
15
14
16
var body = " "
You can’t perform that action at this time.
0 commit comments