From 1795be3c76b9f85e7fec6dc3abb419f3bd665584 Mon Sep 17 00:00:00 2001 From: Trisha Anand Date: Wed, 19 Feb 2020 17:47:26 +0530 Subject: [PATCH] Added route parameters to action configuration to handle the scenario of rapid api putting variables in the path --- .../java/com/appsmith/external/models/ActionConfiguration.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/server/appsmith-interfaces/src/main/java/com/appsmith/external/models/ActionConfiguration.java b/app/server/appsmith-interfaces/src/main/java/com/appsmith/external/models/ActionConfiguration.java index 09fdc4c72e..97dbf561a9 100644 --- a/app/server/appsmith-interfaces/src/main/java/com/appsmith/external/models/ActionConfiguration.java +++ b/app/server/appsmith-interfaces/src/main/java/com/appsmith/external/models/ActionConfiguration.java @@ -37,6 +37,8 @@ public class ActionConfiguration { String body; // For form-data input instead of json use the following List bodyFormData; + // For route parameters extracted from rapid-api + List routeParameters; HttpMethod httpMethod; // Paginated API fields String next;