mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 14:26:04 +01:00
14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
|
|
api.array :wiki_pages do
|
||
|
|
@pages.each do |page|
|
||
|
|
api.wiki_page do
|
||
|
|
api.title page.title
|
||
|
|
if page.parent
|
||
|
|
api.parent :title => page.parent.title
|
||
|
|
end
|
||
|
|
api.version page.version
|
||
|
|
api.created_on page.created_on
|
||
|
|
api.updated_on page.updated_on
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|