If I define multiple handlers for a single module, each with a different method, can I secure them individually?
I want to define a GET handler for a resource that is unsecured to allow anyone to call it and get a response back, and a PUT handler to update the resource that requires a role/priv.
It isn’t obvious to me from the documentation if this can be done, I can’t find anything relating to it but I’d imagine it would be a pretty basic (not to mention common) requirement?
Regards
Rich