Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
16
app/views/projects/show.api.rsb
Normal file
16
app/views/projects/show.api.rsb
Normal file
|
@ -0,0 +1,16 @@
|
|||
api.project do
|
||||
api.id @project.id
|
||||
api.name @project.name
|
||||
api.identifier @project.identifier
|
||||
api.description @project.description
|
||||
api.homepage @project.homepage
|
||||
api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible?
|
||||
api.status @project.status
|
||||
api.is_public @project.is_public?
|
||||
|
||||
render_api_custom_values @project.visible_custom_field_values, api
|
||||
render_api_includes(@project, api)
|
||||
|
||||
api.created_on @project.created_on
|
||||
api.updated_on @project.updated_on
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue