annotate app/views/wiki/index.api.rsb @ 1237:1d5451bf82d7 redmine-2.2-integration

Added missing route to auto_completes#project_tags (AutoCompletes controller patched in redmine tags plugin)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 26 Mar 2013 15:11:27 +0000
parents 433d4f72a19b
children
rev   line source
Chris@1115 1 api.array :wiki_pages do
Chris@1115 2 @pages.each do |page|
Chris@1115 3 api.wiki_page do
Chris@1115 4 api.title page.title
Chris@1115 5 if page.parent
Chris@1115 6 api.parent :title => page.parent.title
Chris@1115 7 end
Chris@1115 8 api.version page.version
Chris@1115 9 api.created_on page.created_on
Chris@1115 10 api.updated_on page.updated_on
Chris@1115 11 end
Chris@1115 12 end
Chris@1115 13 end