diff options
author | golabek <tomasz.golabek@nokia.com> | 2019-02-11 16:36:49 +0100 |
---|---|---|
committer | golabek <tomasz.golabek@nokia.com> | 2019-02-18 13:49:42 +0100 |
commit | e3f8c6d9b3ff4b9c9b82c795a791ea9b5a014c98 (patch) | |
tree | 24c174cedd41a9c9d5c5e7b780fbde6aa9e47f5e /vid-ext-services-simulator/src/main/resources/preset_registration | |
parent | 4b8ae0089f38ab06ba319ef439fffb59008e08e5 (diff) |
Introduced mocked SO workflows in VID FE
Mocked SO workflows joined with list of workflows from VIDs DB.
(Contains: Mocked BE service to return workflow list)
Change-Id: I10336238cfeb8819e0a2b3e88cd86c338cab86fa
Issue-ID: VID-399
Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Diffstat (limited to 'vid-ext-services-simulator/src/main/resources/preset_registration')
-rw-r--r-- | vid-ext-services-simulator/src/main/resources/preset_registration/changeManagement/workflows.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vid-ext-services-simulator/src/main/resources/preset_registration/changeManagement/workflows.json b/vid-ext-services-simulator/src/main/resources/preset_registration/changeManagement/workflows.json new file mode 100644 index 000000000..f79651be4 --- /dev/null +++ b/vid-ext-services-simulator/src/main/resources/preset_registration/changeManagement/workflows.json @@ -0,0 +1,23 @@ +{ + "simulatorRequest": { + "method": "GET", + "path": "/so/workflows" + } , + "simulatorResponse": { + "responseCode": 200, + "body": { + "workflows": + [{ + "id": 1, + "name": "workflow 1" + },{ + "id": 2, + "name": "workflow 2" + },{ + "id": 3, + "name": "workflow 3" + } + ] + } + } +}
\ No newline at end of file |