mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 14:26:04 +01:00
7 lines
302 B
Plaintext
7 lines
302 B
Plaintext
|
|
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
|