Is there a way to route requests based on the HTTP method in addition to the URI pattern? I have a resource which requires different credentials for GET and PUT, and I'd like to use a different Guard instance for each method, rather than having a custom Guard class or building the check into the resource class itself.
Thanks,
-- Jim

