moleculerjs / moleculer-web

:earth_africa: Official API Gateway service for Moleculer framework
http://moleculer.services/docs/moleculer-web.html
MIT License
291 stars 118 forks source link

Fix url params to transfer at streaming #252

Closed icebob closed 3 years ago

icebob commented 3 years ago

Changes Access to the URL parameters (/upload/:id) via ctx.meta.$params.

In the previous version only at stream-typed aliases, the ctx.params.$params works but only if the target service was on the same node as API gateway because the params.$params is not transferred. At multipart file upload, this doesn't work in any way.

TODO