Thibaut SEVERAC
Thibaut SEVERAC
for create the setter for my propertie : ``` php private $option_connection; ``` i have : ``` Traceback (most recent call last): File "C:\Program Files\Sublime Text 3\sublime_plugin.py", line 543, in...
Add typing for the optionals middlewares PS : I typed the encryption middleware too, but I think it's not a good middleware, not secure (IV not changing), and hard to...
Fix #338 I think it can be useful to add some metas in the schemas / rules like : ```js dot: { $$metas: { openapiName: 'dot' }, $$type: "object", x:...
Is it possible to add some metas in the schemas / rules ? like : ```js dot: { $$metas: { openapiName: 'dot' }, $$type: "object", x: "number", // object props...
### Description: Fix #7391 It allow to detect browser included in streaming softwares . ### Review * [ ] [Functional review done](https://developer.matomo.org/guides/pull-request-reviews#functional-review-done) * [ ] [Potential edge cases thought about](https://developer.matomo.org/guides/pull-request-reviews#potential-edge-cases-thought-about)...
This PR will correct the "database per service" pattern . So, running multiples services on the same node, can use different databases connections (one per service) . Because this can...
From mongoose V7, async functions will throw an error if we pass a callback (and so will skip his job) . I saw this async functions was added years ago...
Just found this reading the code : https://github.com/moleculerjs/moleculer-web/blob/master/src/index.js#L1351C47-L1351C47 ```javascript let opts = Object.assign({}, { window: 60 * 1000, limit: 30, headers: false, key: (req) => { return req.headers["x-forwarded-for"] || req.connection.remoteAddress...
The problem is here : https://github.com/moleculerjs/moleculer-web/blob/master/src/index.js#L1469 If I setup an alias like : ```js { "REST /users": { action : "action" } } ``` it will treat the action as...