Is there a way to run a global before hook, for example setField({ from: 'params.user.id', as: 'data.createdById' }), after the service level before hooks have run?
The services should in this case manage authentication and decide which authentication strategies that are allowed so the authenticate hook cannot be global and the global hook needs to be run after authentication.
I'm open for any workarounds, but I'd rather not add the createdById hook to all existing and new services.
Is there a way to run a global before hook, for example
setField({ from: 'params.user.id', as: 'data.createdById' }), after the service level before hooks have run?The services should in this case manage authentication and decide which authentication strategies that are allowed so the
authenticatehook cannot be global and the global hook needs to be run after authentication.I'm open for any workarounds, but I'd rather not add the
createdByIdhook to all existing and new services.