##// END OF EJS Templates
Merged r15490 to r15493, r15496, r15497 (#22951)....
Merged r15490 to r15493, r15496, r15497 (#22951). git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15500 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9965:b603aa74f9ea
r15118:8516e1c88dfe
Show More
show.api.rsb
15 lines | 463 B | text/plain | TextLexer
Jean-Philippe Lang
Adds REST API for versions (#7403)....
r6060 api.version do
api.id @version.id
api.project(:id => @version.project_id, :name => @version.project.name) unless @version.project.nil?
Toshi MARUYAMA
remove trailing white-spaces from app/views/versions/show.api.rsb...
r7133
Toshi MARUYAMA
replace tabs to spaces at app/views/versions/show.api.rsb...
r7233 api.name @version.name
Jean-Philippe Lang
Adds REST API for versions (#7403)....
r6060 api.description @version.description
api.status @version.status
api.due_date @version.effective_date
Jean-Philippe Lang
Adds sharing attribute to the versions API (#11541)....
r9965 api.sharing @version.sharing
Toshi MARUYAMA
remove trailing white-spaces from app/views/versions/show.api.rsb...
r7133
Jean-Philippe Lang
Adds REST API for versions (#7403)....
r6060 render_api_custom_values @version.custom_field_values, api
Toshi MARUYAMA
remove trailing white-spaces from app/views/versions/show.api.rsb...
r7133
Jean-Philippe Lang
Adds REST API for versions (#7403)....
r6060 api.created_on @version.created_on
api.updated_on @version.updated_on
end