ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
224 B

  1. # frozen_string_literal: true
  2. module PostRepr
  3. BASE = { include: { tags: TagRepr::BASE } }.freeze
  4. module_function
  5. def base post
  6. post.as_json(BASE)
  7. end
  8. def many posts
  9. posts.map { |p| base(p) }
  10. end
  11. end