ファイル
btrc-hub/backend/app/representations/post_compact_repr.rb
T
2026-07-18 17:44:56 +09:00

20 行
311 B
Ruby

# frozen_string_literal: true
module PostCompactRepr
module_function
def base post, host: nil
return nil if post.nil?
PostRepr
.common(post, host:)
.slice(
'id',
'title',
'url',
'thumbnail',
'thumbnail_base')
end
end