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

  1. # frozen_string_literal: true
  2. module UserRepr
  3. BASE = { only: [:id, :name] }.freeze
  4. module_function
  5. def base user
  6. user.as_json(BASE)
  7. end
  8. def many users
  9. users.map { |u| base(u) }
  10. end
  11. end