ServiceFilter ValidateRequestAttribute not working

Trying to ramp up a service quickly, using the auto crud generated services. Working off of your example from here:

https://docs.servicestack.net/autogen#customize-code-generation-to-include-app-conventions

The only thing I’ve changed is that ALL (not just POST/PUT/PATCH) requests should be authenticated.

But no matter what, my autoquery endpoints always allow anyone, even unauthenticated users.

Not sure if there is something else I need to do / enable?

As you’re using the Declarative Validation attributes, you’ll need to enable the Validation Feature, e.g:

Plugins.Add(new ValidationFeature());

Oof, thank you. You should add that to the example / documentation that I linked.