ProCoSys / Bifrost

Application Development Framework promoting good development practices such as CQRS and MVVM (see readme)
http://bifrost.dolittle.com
Other
1 stars 1 forks source link

RestServiceMethodInvoker hard codes list of parameters to ignore #57

Closed bnordli closed 8 years ago

bnordli commented 8 years ago

RestServiceMethodInvoker is responsible for mapping requests to rest-like services. Currently it filters out the following parameters: "_", "_q", "_rm", "_cmd". The rest of the parameters must exactly match the signature of the requested method.

We would like to make other parameters invisible to the method invoker, in order to read them by other services beneath.

I suggest we ignore all parameters starting with "_".