mirror of
https://github.com/redmine/redmine.git
synced 2025-11-12 08:16:03 +01:00
Patch by Takenori TAKAKI. git-svn-id: https://svn.redmine.org/redmine/trunk@22288 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
api.array :issue_statuses do
|
|
@issue_statuses.each do |status|
|
|
api.issue_status do
|
|
api.id status.id
|
|
api.name status.name
|
|
api.is_closed status.is_closed
|
|
api.description status.description
|
|
end
|
|
end
|
|
end
|