Description
Database adapters offer us options to control multi
and whitelist
, but they do not provide us a way to change these options per some variable. For example, we may want to allow multi
on the server but not on REST and Socket.
You can see some related issues here:
feathersjs/feathers#2550
#651
My first thought was something similar to disallow
for controlling these per provider. Something like
const multiHook = multi({
server: true,
// ... all others false be default?
// or the user could define them I guess
});
const whitelistHook = whiteList({
rest: [...],
socketio: [...]
// if left undefined, use the basic whitelist
// so server would get the full whitelist here
});
Note that to use these, you would need to set multi: true
and whitelist: [...all possible operators]
in the service options, then this hook would regulate them per provider.
I don't use the iff
hooks much, but it may be better to create more generic multi/whitelist hooks and use those instead. See: #651
I am open to create a PR for these two hooks. But, which style would you all prefer? Hooks like described above or hooks that would be used in iff
?