view app/views/queries/index.api.rsb @ 1395:0e4c6c2f400e biblio_alt_search_auth

Fixed teh way the model is accessing the virtual attributes.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Sat, 28 Sep 2013 16:04:04 +0100
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