You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Call Interceptor Service policy has an attribute named Includes to Payload. This policy attribute is of type String (refer to [1]). Instead of expecting the user to type in the expected input as a comma-separated list, give an option to select the values from a dropdown menu.
To achieve this we need to introduce a new policy attribute type named Enum Array (right now we only support String, Integer, Boolean, and Enum). With this improvement, the user should be able to select from a list of checkboxes rather than typing in a comma-separated list of values. You can re-use a UI component like so to improve the policy related UI/UX.
The text was updated successfully, but these errors were encountered:
Describe your problem(s)
Currently, the
Call Interceptor Service
policy has an attribute namedIncludes to Payload
. This policy attribute is of type String (refer to [1]). Instead of expecting the user to type in the expected input as a comma-separated list, give an option to select the values from a dropdown menu.[1] https://github.com/wso2/product-apim/blob/master/modules/distribution/resources/operation_policies/specifications/ccCallInterceptorService_v1.json#L21
Describe your solution
To achieve this we need to introduce a new policy attribute type named
Enum Array
(right now we only support String, Integer, Boolean, and Enum). With this improvement, the user should be able to select from a list of checkboxes rather than typing in a comma-separated list of values. You can re-use a UI component like so to improve the policy related UI/UX.The text was updated successfully, but these errors were encountered: