このコミットが含まれているのは:
2026-09-21 03:30:22 +09:00
コミット 6e33c5f192
8個のファイルの変更30行の追加61行の削除
+3 -3
ファイルの表示
@@ -88,14 +88,14 @@ module PostRepr
def tag_json post
post
.active_post_tags
.post_tags
.reject { _1.tag.deprecated? }
.sort_by { _1.tag.name }
.map { |post_tag|
.map do |post_tag|
TagRepr.inline(post_tag.tag).merge(
'children' => [],
'sections' => post_tag.sections.as_json(only: [:begin_ms, :end_ms]))
}
end
end
def thumbnail_url post, host: nil