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

  1. # frozen_string_literal: true
  2. module WikiPageRepr
  3. BASE = { methods: [:title] }.freeze
  4. module_function
  5. def base wiki_page
  6. wiki_page.as_json(BASE)
  7. end
  8. def many wiki_pages
  9. wiki_pages.map { |p| base(p) }
  10. end
  11. end