From e2164e29d083e132dd01da31c441a69bb43b3086 Mon Sep 17 00:00:00 2001 From: Alexander Machehin Date: Wed, 17 Dec 2014 18:53:44 +0500 Subject: [PATCH] add project_id to the List build lists (API) --- app/views/api/v1/build_lists/index.json.jbuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/api/v1/build_lists/index.json.jbuilder b/app/views/api/v1/build_lists/index.json.jbuilder index 6bc5eba1a..aaf19e8a5 100644 --- a/app/views/api/v1/build_lists/index.json.jbuilder +++ b/app/views/api/v1/build_lists/index.json.jbuilder @@ -1,5 +1,5 @@ json.build_lists @build_lists do |build_list| - json.(build_list, :id, :status) + json.(build_list, :id, :status, :project_id) json.url api_v1_build_list_path(build_list, format: :json) end