From cd8d70de0e064cccb3ecef56ed2812f22110790f Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 26 Feb 2020 14:27:17 -0600 Subject: [PATCH] Send batch params as part of normalized API --- tailbone/api/batch/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tailbone/api/batch/core.py b/tailbone/api/batch/core.py index 4a24603e..1ceab308 100644 --- a/tailbone/api/batch/core.py +++ b/tailbone/api/batch/core.py @@ -100,6 +100,7 @@ class APIBatchView(APIBatchMixin, APIMasterView): 'id_str': batch.id_str, 'description': batch.description, 'notes': batch.notes, + 'params': batch.params or {}, 'rowcount': batch.rowcount, 'created': created, 'created_by_uuid': batch.created_by.uuid,