Merge branch 'feature/expand-action-route-parameters' into 'release'

Added route parameters to action configuration to handle the scenario of rapid...

See merge request theappsmith/internal-tools-server!199
This commit is contained in:
Trisha Anand 2020-02-19 12:21:22 +00:00
commit 15e1dff980

View File

@ -37,6 +37,8 @@ public class ActionConfiguration {
String body;
// For form-data input instead of json use the following
List<Property> bodyFormData;
// For route parameters extracted from rapid-api
List<Property> routeParameters;
HttpMethod httpMethod;
// Paginated API fields
String next;