To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / queries / index.api.rsb @ 1591:63650ae64bf2

History | View | Annotate | Download (304 Bytes)

1
api.array :queries, api_meta(:total_count => @query_count, :offset => @offset, :limit => @limit) do
2
  @queries.each do |query|
3
    api.query do
4
      api.id          query.id
5
      api.name        query.name
6
      api.is_public   query.is_public?
7
      api.project_id  query.project_id
8
    end
9
  end
10
end