Requiring PUT vs PATCH explicitly

If I want to ensure that PUT is used consistently throughout my application for updates and PATCH is never allowed, then I cannot use resources/4. I must explicitly use put/4 in my router.

Is my understanding correct?

2 Likes

Looks like it, but that is not hard anyway and you can always make your own version of resources/4 that does not add PATCH. :slight_smile:

3 Likes

Awesome, thanks!

2 Likes