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

  1. # frozen_string_literal: true
  2. module WikiAssetRepr
  3. BASE = { only: [:wiki_page_id, :no], methods: [:url] }.freeze
  4. module_function
  5. def base wiki_asset
  6. wiki_asset.as_json(BASE)
  7. end
  8. def many wiki_assets
  9. wiki_assets.map { |a| base(a) }
  10. end
  11. end