Bug 17651: borrowers.updated_on can be null - swagger def
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 17 Nov 2016 15:12:01 +0000 (15:12 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 18 Nov 2016 13:39:06 +0000 (13:39 +0000)
The swagger file does not consider borrowers.updated_on as a nullable
value, it should

Test plan:
0/ Do not apply this patch
1/ update borrowers set updated_on=null;
2/ prove t/db_dependent/api/v1/patrons.t
=> Fail
3/ Apply this patch
4/ prove t/db_dependent/api/v1/patrons.t
=> green

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

api/v1/swagger/definitions/patron.json

index 84f298a..c93c4ba 100644 (file)
       "description": "produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'"
     },
     "updated_on": {
-      "type": "string",
+      "type": ["string", "null"],
       "description": "time of last change could be useful for synchronization with external systems (among others)"
     },
     "lastseen": {