Hernan Marano
Hernan Marano
I totally agree with you about being explicit with security. I may be dealing with an extreme use case due to T4MVC creating new controllers that derive from real ones...
I've kept thinking about this, and this ``` SecurityConfigurator.Configure(configuration => { configuration.ForActionsMatching(action => action.ControllerType.Name.StartsWith("Util_")) .Ignore(); }); ``` would be as explicit as this: ``` SecurityConfigurator.Configure(configuration => { configuration.ExcludeControllers(controllerType => controllerType.Name.StartsWith("Util_"));...
Yes, I've been diving in the source code, and it seems pretty straight forward as most of the functionality is there. Take ur time to think about this.
Yes, I would be happy to contribute with this. I can't promise I will have it ready soon, though, but I have added this to my to-do list.
Don't worry, take ur time.