ぼざクリタグ広場 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
279 B

  1. # frozen_string_literal: true
  2. module DeerjikistRepr
  3. BASE = { only: [:platform, :code], include: { tag: TagRepr::BASE } }.freeze
  4. module_function
  5. def base deerjikist
  6. deerjikist.as_json(BASE)
  7. end
  8. def many deerjikists
  9. deerjikists.map { |d| base(d) }
  10. end
  11. end