From b5082b8fd31f429b9bd7bb31b10ab17aa1a1151e Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Thu, 2 Sep 2021 09:53:17 -0400 Subject: [PATCH] Call FileService --- crc/api/file.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crc/api/file.py b/crc/api/file.py index e1e3c935..931c1f87 100644 --- a/crc/api/file.py +++ b/crc/api/file.py @@ -173,5 +173,7 @@ def delete_file(file_id): FileService.delete_file(file_id) -def dmn_from_ss(workflow_spec_id): - pass +def dmn_from_ss(ss_data): + result = FileService.dmn_from_spreadsheet(ss_data) + # TODO: Do we need to return json? + return result