view app/views/queries/index.api.rsb @ 1141:c852c89f5de1 redmine-2.2-integration

Restore members route (in addition to memberships) to avoid changing URLs
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 10 Jan 2013 15:23:50 +0000
parents cbb26bc654de
children 261b3d9a4903
line wrap: on
line source
api.array :queries, api_meta(:total_count => @query_count, :offset => @offset, :limit => @limit) do
  @queries.each do |query|
    api.query do
      api.id          query.id
      api.name        query.name
      api.is_public   query.is_public
      api.project_id  query.project_id
    end
  end
end