view app/views/issue_categories/show.api.rsb @ 1106:b5c396ea06e4 bibplugin_bibtex

Saves the temporary publication object, as well as it's id on the form.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 05 Dec 2012 19:13:15 +0000
parents cbb26bc654de
children
line wrap: on
line source
api.issue_category do
  api.id @category.id
  api.project(:id => @category.project_id, :name => @category.project.name) unless @category.project.nil?
  api.name @category.name
  api.assigned_to(:id => @category.assigned_to_id, :name => @category.assigned_to.name) unless @category.assigned_to.nil?
end