From d9252550a283df11bd7814f4f5f01132fcdb5905 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Mon, 26 Oct 2015 11:09:31 +0100 Subject: [PATCH] [PASSED QA] Bug 13799: Followup of "Followup: Refactor spec file" Fix Swagger2 definitions file Signed-off-by: Kyle M Hall --- api/v1/definitions/index.json | 4 ++-- api/v1/definitions/patron.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/api/v1/definitions/index.json b/api/v1/definitions/index.json index 08e6b50..e940eee 100644 --- a/api/v1/definitions/index.json +++ b/api/v1/definitions/index.json @@ -1,4 +1,4 @@ { - "patron": "patron.json", - "error": "error.json" + "patron": { "$ref": "patron.json" }, + "error": { "$ref": "error.json" } } diff --git a/api/v1/definitions/patron.json b/api/v1/definitions/patron.json index 8e23d91..1b35785 100644 --- a/api/v1/definitions/patron.json +++ b/api/v1/definitions/patron.json @@ -270,3 +270,4 @@ "description": "patron's privacy settings related to their reading history" } } +} -- 1.7.2.5