Taffy icon indicating copy to clipboard operation
Taffy copied to clipboard

Support for verb/query params with new framework setting...

Open charlesr1971 opened this issue 6 years ago • 1 comments

I think it would be useful to have a setting called:

variables.framework.queryParamVerbMap

This would allow one or more verbs to allow query params to be passed into methods as optional arguments. Like:

variables.framework.queryParamVerbMap = {
    put: true,
    delete: true,
    post: true
}

The GET verb implicitly applies this rule, already, but the other 3 verbs should also be able to transmit query params in the API URL.

charlesr1971 avatar Jan 22 '19 22:01 charlesr1971

I think I'd rather seem them always allowed in all cases. We already have a cascading priority setup, so I don't see any reason not to do the same for all verbs.

atuttle avatar Oct 01 '20 18:10 atuttle