##// END OF EJS Templates
Adds setting_new_project_issue_tab_enabled i18n string (#6204)....
Adds setting_new_project_issue_tab_enabled i18n string (#6204). git-svn-id: http://svn.redmine.org/redmine/trunk@15408 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9965:b603aa74f9ea
r15026:3bdf6e995a35
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