1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/views/api/projects/index.json.jbuilder
2016-04-22 18:17:55 +02:00

12 lines
376 B
Ruby

json.projects @projects do |project|
json.extract! project, :id, :name, :description, :author_id, :licence_id, :slug
json.url project_url(project, format: :json)
json.project_image project.project_image.attachment.medium.url if project.project_image
json.author_id project.author_id
json.user_ids project.user_ids
end
json.meta do
json.total @total if @total
end